2016-10-21 16:56:05 -04:00
|
|
|
module.exports = {
|
2022-05-20 11:38:06 -07:00
|
|
|
parser: '@babel/eslint-parser',
|
|
|
|
parserOptions: {
|
|
|
|
requireConfigFile: false
|
|
|
|
},
|
2016-10-23 10:57:03 -04:00
|
|
|
rules: {
|
|
|
|
// Errors
|
2016-10-23 18:11:30 -04:00
|
|
|
'valid-jsdoc': [2, {
|
|
|
|
prefer: {
|
2016-10-25 14:08:26 -07:00
|
|
|
arg: 'param',
|
|
|
|
argument: 'param',
|
|
|
|
class: 'constructor',
|
|
|
|
return: 'return',
|
|
|
|
virtual: 'abstract'
|
2016-10-23 18:11:30 -04:00
|
|
|
},
|
2016-10-25 14:08:26 -07:00
|
|
|
preferType: {
|
|
|
|
Boolean: 'boolean',
|
|
|
|
Number: 'number',
|
|
|
|
Object: 'object',
|
|
|
|
String: 'string'
|
|
|
|
},
|
|
|
|
requireReturn: false,
|
|
|
|
requireReturnType: true,
|
|
|
|
requireParamDescription: true,
|
|
|
|
requireReturnDescription: true
|
2016-10-23 18:11:30 -04:00
|
|
|
}],
|
2016-10-23 10:57:03 -04:00
|
|
|
|
|
|
|
// Best practices
|
2017-08-14 08:56:27 -04:00
|
|
|
'array-callback-return': [2],
|
|
|
|
'block-scoped-var': [2],
|
2016-10-23 10:57:03 -04:00
|
|
|
'curly': [2, 'multi-line'],
|
|
|
|
'dot-location': [2, 'property'],
|
|
|
|
'dot-notation': [2],
|
|
|
|
'eqeqeq': [2],
|
|
|
|
'no-alert': [2],
|
|
|
|
'no-div-regex': [2],
|
2017-08-14 08:56:27 -04:00
|
|
|
'no-else-return': [2],
|
2016-10-23 10:57:03 -04:00
|
|
|
'no-eq-null': [2],
|
|
|
|
'no-eval': [2],
|
|
|
|
'no-extend-native': [2],
|
2017-08-14 08:56:27 -04:00
|
|
|
'no-extra-bind': [2],
|
2016-10-23 10:57:03 -04:00
|
|
|
'no-global-assign': [2],
|
|
|
|
'no-implied-eval': [2],
|
|
|
|
'no-invalid-this': [2],
|
|
|
|
'no-iterator': [2],
|
|
|
|
'no-lone-blocks': [2],
|
|
|
|
'no-loop-func': [2],
|
|
|
|
'no-multi-spaces': [2],
|
|
|
|
'no-multi-str': [2],
|
2017-08-14 08:56:27 -04:00
|
|
|
'no-new': [2],
|
2016-10-23 10:57:03 -04:00
|
|
|
'no-proto': [2],
|
|
|
|
'no-return-assign': [2],
|
|
|
|
'no-script-url': [2],
|
|
|
|
'no-self-compare': [2],
|
2017-08-14 08:56:27 -04:00
|
|
|
'no-sequences': [2],
|
2016-10-23 10:57:03 -04:00
|
|
|
'no-throw-literal': [2],
|
2017-08-14 08:56:27 -04:00
|
|
|
'no-unmodified-loop-condition': [2],
|
2016-10-23 10:57:03 -04:00
|
|
|
'no-unused-expressions': [2],
|
|
|
|
'no-useless-call': [2],
|
2017-08-14 08:56:27 -04:00
|
|
|
'no-useless-concat': [2],
|
2016-10-23 10:57:03 -04:00
|
|
|
'no-useless-escape': [2],
|
2021-02-16 15:11:53 -05:00
|
|
|
'no-warning-comments': [0],
|
2016-10-23 10:57:03 -04:00
|
|
|
'no-with': [2],
|
|
|
|
'radix': [2],
|
|
|
|
'wrap-iife': [2],
|
|
|
|
'yoda': [2],
|
|
|
|
|
|
|
|
// Variables
|
|
|
|
'no-unused-vars': [2, {args: 'after-used', varsIgnorePattern: '^_'}],
|
|
|
|
'no-catch-shadow': [2],
|
|
|
|
'no-shadow': [2],
|
|
|
|
'no-undefined': [2],
|
|
|
|
'no-use-before-define': [2],
|
2017-08-14 08:56:27 -04:00
|
|
|
|
2016-10-23 10:57:03 -04:00
|
|
|
// Strict
|
|
|
|
'strict': [2, 'never'],
|
|
|
|
|
|
|
|
// Style
|
2016-10-24 10:40:33 -04:00
|
|
|
'array-bracket-spacing': [2, 'never'],
|
2016-10-24 10:42:20 -04:00
|
|
|
'block-spacing': [2, 'always'],
|
2016-10-23 10:57:03 -04:00
|
|
|
'brace-style': [2],
|
2016-10-24 11:03:59 -04:00
|
|
|
'camelcase': [2, {
|
|
|
|
properties: 'never'
|
|
|
|
}],
|
2016-10-23 18:11:30 -04:00
|
|
|
'comma-dangle': [2, 'never'],
|
2016-10-24 10:44:04 -04:00
|
|
|
'comma-spacing': [2],
|
2016-10-24 10:45:08 -04:00
|
|
|
'comma-style': [2],
|
2016-10-24 10:46:17 -04:00
|
|
|
'eol-last': [2, 'always'],
|
2016-10-24 10:55:24 -04:00
|
|
|
'func-call-spacing': [2, 'never'],
|
2016-10-23 10:57:03 -04:00
|
|
|
'func-style': [2, 'expression'],
|
|
|
|
'indent': [2, 4],
|
|
|
|
'jsx-quotes': [2, 'prefer-double'],
|
|
|
|
'key-spacing': [2, {
|
|
|
|
beforeColon: false,
|
|
|
|
afterColon: true,
|
|
|
|
mode: 'strict'
|
|
|
|
}],
|
|
|
|
'keyword-spacing': [2, {
|
|
|
|
before: true,
|
|
|
|
after: true
|
|
|
|
}],
|
|
|
|
'linebreak-style': [2, 'unix'],
|
2016-11-23 17:27:09 -05:00
|
|
|
'max-len': [2, {
|
|
|
|
code: 120,
|
|
|
|
tabWidth: 4,
|
|
|
|
ignoreUrls: true
|
|
|
|
}],
|
2016-10-23 10:57:03 -04:00
|
|
|
'new-parens': [2],
|
|
|
|
'newline-per-chained-call': [2],
|
2017-08-14 08:56:27 -04:00
|
|
|
'no-lonely-if': [2],
|
|
|
|
'no-mixed-operators': [2],
|
2016-10-23 10:57:03 -04:00
|
|
|
'no-multiple-empty-lines': [2, {
|
|
|
|
max: 2,
|
|
|
|
maxBOF: 0,
|
|
|
|
maxEOF: 0
|
|
|
|
}],
|
2017-08-14 08:56:27 -04:00
|
|
|
'no-negated-condition': [2],
|
2016-10-23 10:57:03 -04:00
|
|
|
'no-tabs': [2],
|
2016-10-24 11:13:27 -04:00
|
|
|
'no-trailing-spaces': [2, {skipBlankLines: true}],
|
2016-10-23 10:57:03 -04:00
|
|
|
'no-unneeded-ternary': [2],
|
2016-10-24 11:13:27 -04:00
|
|
|
'object-curly-spacing': [2],
|
2016-10-23 10:57:03 -04:00
|
|
|
'object-property-newline': [2, {
|
|
|
|
allowMultiplePropertiesPerLine: true
|
|
|
|
}],
|
|
|
|
'one-var': [2, 'never'],
|
|
|
|
'operator-linebreak': [2, 'after'],
|
2016-10-24 10:59:50 -04:00
|
|
|
'quote-props': [2, 'consistent-as-needed'],
|
2016-10-23 10:57:03 -04:00
|
|
|
'quotes': [2, 'single', {
|
2016-10-24 10:59:50 -04:00
|
|
|
allowTemplateLiterals: true,
|
|
|
|
avoidEscape: true
|
2016-10-23 10:57:03 -04:00
|
|
|
}],
|
2017-08-14 08:56:27 -04:00
|
|
|
'require-jsdoc': [2],
|
2016-10-23 10:57:03 -04:00
|
|
|
'semi': [2, 'always'],
|
2016-10-24 11:10:57 -04:00
|
|
|
'semi-spacing': [2],
|
2016-10-24 11:17:11 -04:00
|
|
|
'space-before-function-paren': [2, 'always'],
|
2016-10-24 11:19:46 -04:00
|
|
|
'space-in-parens': [2],
|
2016-10-24 11:22:26 -04:00
|
|
|
'space-infix-ops': [2],
|
2016-10-24 11:24:13 -04:00
|
|
|
'space-unary-ops': [2],
|
|
|
|
'spaced-comment': [2]
|
2016-10-23 10:57:03 -04:00
|
|
|
},
|
|
|
|
env: {
|
2016-10-23 18:08:20 -04:00
|
|
|
commonjs: true
|
2016-10-23 10:57:03 -04:00
|
|
|
},
|
|
|
|
extends: ['eslint:recommended']
|
2016-10-21 16:56:05 -04:00
|
|
|
};
|