human/.eslintrc.json

59 lines
1.6 KiB
JSON
Raw Normal View History

2020-10-12 01:22:43 +02:00
{
"globals": {},
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"jquery": true,
"es2020": true
},
"parserOptions": { "ecmaVersion": 2020 },
"plugins": [ ],
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:node/recommended",
"plugin:promise/recommended",
"plugin:json/recommended-with-comments",
"airbnb-base"
],
"ignorePatterns": [ "dist", "assets", "media", "models", "node_modules" ],
"rules": {
"max-len": [1, 275, 3],
"camelcase": "off",
"guard-for-in": "off",
"prefer-template":"off",
"import/extensions": "off",
"func-names": "off",
"no-await-in-loop": "off",
"no-bitwise": "off",
"no-case-declarations":"off",
"no-continue": "off",
"no-loop-func": "off",
"no-mixed-operators": "off",
"no-param-reassign":"off",
"no-plusplus": "off",
"dot-notation": "off",
"no-restricted-globals": "off",
"no-restricted-syntax": "off",
"no-underscore-dangle": "off",
2020-10-13 15:59:21 +02:00
"no-return-assign": "off",
2020-10-12 01:22:43 +02:00
"newline-per-chained-call": "off",
"node/no-unsupported-features/es-syntax": "off",
"node/shebang": "off",
"object-curly-newline": "off",
"prefer-destructuring": "off",
"promise/always-return": "off",
"promise/catch-or-return": "off",
"promise/no-nesting": "off",
2020-11-06 17:39:39 +01:00
"no-async-promise-executor": "off",
2020-10-12 01:22:43 +02:00
"import/no-absolute-path": "off",
2020-10-14 17:43:33 +02:00
"import/no-extraneous-dependencies": "off",
2020-10-15 15:43:16 +02:00
"node/no-unpublished-import": "off",
2020-10-14 17:43:33 +02:00
"node/no-unpublished-require": "off",
2020-10-12 01:22:43 +02:00
"no-regex-spaces": "off",
"radix": "off"
}
}