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
|
|
|
|
|
|
|
|
overrides:
|
|
|
|
- files: js/**
|
|
|
|
excludedFiles:
|
|
|
|
- js/portalHelper/*
|
2020-04-11 20:45:55 -04:00
|
|
|
- js/misc/extensionUtils.js
|
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
|