2019-08-19 13:20:55 -04:00
|
|
|
rules:
|
|
|
|
camelcase:
|
|
|
|
- error
|
|
|
|
- properties: never
|
|
|
|
allow: [^vfunc_, ^on_]
|
|
|
|
consistent-return: error
|
2022-07-05 12:13:15 -04:00
|
|
|
eqeqeq:
|
|
|
|
- error
|
|
|
|
- smart
|
2019-08-19 13:20:55 -04:00
|
|
|
key-spacing:
|
|
|
|
- error
|
|
|
|
- mode: minimum
|
|
|
|
beforeColon: false
|
|
|
|
afterColon: true
|
|
|
|
prefer-arrow-callback: error
|
2023-07-12 20:55:10 -04:00
|
|
|
jsdoc/require-param-description: off
|
2023-07-30 04:33:14 -04:00
|
|
|
jsdoc/require-jsdoc:
|
|
|
|
- error
|
|
|
|
- exemptEmptyFunctions: true
|
|
|
|
publicOnly:
|
|
|
|
esm: true
|
2019-08-19 13:20:55 -04:00
|
|
|
|
|
|
|
overrides:
|
2023-07-13 15:29:13 -04:00
|
|
|
- files:
|
|
|
|
- js/**
|
|
|
|
- tests/shell/**
|
2019-08-19 13:20:55 -04:00
|
|
|
excludedFiles:
|
|
|
|
- js/portalHelper/*
|
2023-06-30 06:57:41 -04:00
|
|
|
- js/extensions/*
|
2019-08-19 13:20:55 -04:00
|
|
|
globals:
|
|
|
|
global: readonly
|
|
|
|
_: readonly
|
|
|
|
C_: readonly
|
|
|
|
N_: readonly
|
|
|
|
ngettext: readonly
|
2019-11-30 21:01:02 -05:00
|
|
|
- files: subprojects/extensions-app/js/**
|
|
|
|
globals:
|
|
|
|
_: readonly
|
|
|
|
C_: readonly
|
|
|
|
N_: readonly
|