2016-12-14 17:39:17 +01:00
|
|
|
{
|
2019-02-01 15:05:48 +01:00
|
|
|
"parser": "babel-eslint",
|
2016-12-14 17:39:17 +01:00
|
|
|
"parserOptions": {
|
2018-04-02 18:10:51 +02:00
|
|
|
"ecmaVersion": 9,
|
2016-12-14 17:39:17 +01:00
|
|
|
"ecmaFeatures": {
|
|
|
|
"impliedStrict": true
|
2017-03-23 18:52:20 +01:00
|
|
|
},
|
2019-02-01 15:05:48 +01:00
|
|
|
"sourceType": "module",
|
|
|
|
"allowImportExportEverywhere": true
|
2016-12-14 17:39:17 +01:00
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es6": true,
|
2017-03-06 13:45:51 +01:00
|
|
|
"node": true
|
2016-12-14 17:39:17 +01:00
|
|
|
},
|
|
|
|
"extends": "eslint:recommended",
|
|
|
|
"rules": {
|
|
|
|
// enable additional rules
|
|
|
|
"no-eval": "error",
|
|
|
|
"no-implied-eval": "error",
|
|
|
|
"dot-notation": "error",
|
|
|
|
"eqeqeq": ["error", "smart"],
|
|
|
|
"no-caller": "error",
|
|
|
|
"no-extra-bind": "error",
|
|
|
|
"no-unused-expressions": "error",
|
|
|
|
"no-useless-call": "error",
|
|
|
|
"no-useless-return": "error",
|
|
|
|
"radix": "warn",
|
|
|
|
|
|
|
|
// modify rules from base configurations
|
|
|
|
"no-unused-vars": ["error", {
|
|
|
|
"args": "none",
|
2017-10-04 23:35:44 +02:00
|
|
|
"vars": "all"
|
2016-12-14 17:39:17 +01:00
|
|
|
}],
|
|
|
|
"no-empty": ["error", {
|
|
|
|
"allowEmptyCatch": true
|
|
|
|
}],
|
|
|
|
|
|
|
|
// disable rules from base configurations
|
|
|
|
"no-control-regex": "off",
|
2019-07-05 13:22:52 +02:00
|
|
|
"require-atomic-updates": "off",
|
|
|
|
"no-async-promise-executor": "off",
|
2016-12-14 17:39:17 +01:00
|
|
|
|
|
|
|
// stylistic conventions
|
|
|
|
"brace-style": ["error", "1tbs"],
|
2019-08-27 19:13:33 +02:00
|
|
|
"space-before-blocks": ["error", "always"],
|
2016-12-14 17:39:17 +01:00
|
|
|
"block-spacing": "error",
|
|
|
|
"array-bracket-spacing": "error",
|
|
|
|
"comma-spacing": "error",
|
2019-11-14 15:52:40 +01:00
|
|
|
"spaced-comment": ["error", "always", { "exceptions": ["/"] } ],
|
2016-12-14 17:39:17 +01:00
|
|
|
"comma-style": "error",
|
|
|
|
"computed-property-spacing": "error",
|
2017-02-09 16:09:33 +01:00
|
|
|
"no-trailing-spaces": "warn",
|
2016-12-14 17:39:17 +01:00
|
|
|
"eol-last": "error",
|
|
|
|
"func-call-spacing": "error",
|
2017-07-24 16:55:48 +02:00
|
|
|
"key-spacing": ["warn", {
|
|
|
|
"mode": "minimum"
|
|
|
|
}],
|
2016-12-14 17:39:17 +01:00
|
|
|
"indent": ["error", 4, {
|
2018-02-13 16:05:55 +01:00
|
|
|
"ignoreComments": true,
|
2016-12-14 17:39:17 +01:00
|
|
|
"ArrayExpression": "first",
|
|
|
|
"SwitchCase": 1
|
|
|
|
}],
|
|
|
|
"linebreak-style": ["error", "unix"],
|
|
|
|
"quotes": ["error", "double", {
|
2021-02-03 20:07:39 +01:00
|
|
|
"avoidEscape": true,
|
|
|
|
"allowTemplateLiterals": true
|
2016-12-14 17:39:17 +01:00
|
|
|
}],
|
2017-01-31 19:24:56 +01:00
|
|
|
"camelcase": ["error", {
|
|
|
|
"properties": "always"
|
|
|
|
}],
|
2016-12-14 17:39:17 +01:00
|
|
|
"semi": ["error", "always"],
|
2017-02-07 21:31:15 +01:00
|
|
|
"unicode-bom": "error",
|
|
|
|
"require-jsdoc": ["error", {
|
|
|
|
"require": {
|
|
|
|
"FunctionDeclaration": true,
|
|
|
|
"MethodDefinition": true,
|
|
|
|
"ClassDeclaration": true,
|
|
|
|
"ArrowFunctionExpression": true
|
|
|
|
}
|
2017-02-09 16:09:33 +01:00
|
|
|
}],
|
|
|
|
"keyword-spacing": ["error", {
|
|
|
|
"before": true,
|
|
|
|
"after": true
|
|
|
|
}],
|
|
|
|
"no-multiple-empty-lines": ["warn", {
|
|
|
|
"max": 2,
|
|
|
|
"maxEOF": 1,
|
|
|
|
"maxBOF": 0
|
|
|
|
}],
|
|
|
|
"no-whitespace-before-property": "error",
|
|
|
|
"operator-linebreak": ["error", "after"],
|
2017-04-13 19:08:50 +02:00
|
|
|
"space-in-parens": "error",
|
2018-04-02 18:10:51 +02:00
|
|
|
"no-var": "error",
|
|
|
|
"prefer-const": "error"
|
2016-12-14 17:39:17 +01:00
|
|
|
},
|
2018-12-29 03:58:05 +01:00
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": "tests/**/*",
|
|
|
|
"rules": {
|
|
|
|
"no-unused-expressions": "off",
|
|
|
|
"no-console": "off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
2016-12-14 17:39:17 +01:00
|
|
|
"globals": {
|
2017-03-21 23:41:44 +01:00
|
|
|
"$": false,
|
|
|
|
"jQuery": false,
|
2017-12-28 19:17:38 +01:00
|
|
|
"log": false,
|
2019-03-09 07:25:27 +01:00
|
|
|
"app": false,
|
2017-03-21 23:41:44 +01:00
|
|
|
|
2017-03-22 17:55:21 +01:00
|
|
|
"COMPILE_TIME": false,
|
2017-06-16 17:36:42 +02:00
|
|
|
"COMPILE_MSG": false,
|
2019-07-05 11:17:52 +02:00
|
|
|
"PKG_VERSION": false
|
2016-12-14 17:39:17 +01:00
|
|
|
}
|
2017-02-23 19:59:58 +01:00
|
|
|
}
|