-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.json
49 lines (49 loc) · 1.23 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"env": {
"node": true,
"mocha": true,
"commonjs": true
},
"plugins": ["prettier", "simple-import-sort", "eslint-plugin-import"],
"extends": ["airbnb-base", "prettier"],
"parserOptions": {
"ecmaVersion": 12
},
"overrides": [
{
"files": ["*.test.js", "*.spec.js"],
"rules": {
"no-unused-expressions": "off"
}
}
],
"ignorePatterns": ["database/migrations/*"],
"rules": {
"simple-import-sort/imports": "error",
"no-underscore-dangle": "off",
"camelcase": "off",
"no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
],
"func-names": "off",
"no-param-reassign": "error",
"consistent-return": "off",
"no-restricted-syntax": "off",
"global-require": "off",
"radix": "off",
"no-await-in-loop": "off",
"class-methods-use-this": "error",
"no-return-await": "error",
"no-new-wrappers": "error",
"prefer-destructuring": "warn",
"no-shadow": "error",
"import/order": "error",
"no-unused-expressions": "error",
"import/no-extraneous-dependencies": "error",
"import/no-unresolved": "error",
"no-plusplus": "error",
"no-continue": "off",
"no-console": "off"
}
}