-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path.eslintrc
64 lines (64 loc) · 1.6 KB
/
.eslintrc
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"extends": "airbnb-base",
"parser": "@babel/eslint-parser",
"rules": {
"arrow-parens": ["error", "as-needed"],
"import/no-named-as-default": 0,
"import/prefer-default-export": 0,
"quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
"comma-dangle": 0,
"object-curly-newline": ["error", {"ObjectPattern": { "multiline": true }}],
"eqeqeq": [1, "allow-null"],
"no-console": "off",
"no-continue": 0,
"no-cond-assign": 1,
"no-constant-condition": 0,
"no-control-regex": 1,
"no-debugger": 1,
"no-dupe-keys": 1,
"no-ex-assign": 1,
"no-extra-boolean-cast": 1,
"no-func-assign": 1,
"no-regex-spaces": 1,
"no-unreachable": 1,
"no-fallthrough": 1,
"no-lone-blocks": 1,
"no-delete-var": 1,
"no-shadow": 1,
"no-shadow-restricted-names": 1,
"no-undef": 2,
"no-undef-init": 1,
"no-use-before-define": 0,
"no-unused-vars": [1, {"vars": "all", "args": "none"}],
"no-underscore-dangle": 0,
"no-restricted-syntax": ["error", "LabeledStatement", "WithStatement"],
"no-await-in-loop": "off",
"no-plusplus": "off",
"guard-for-in": "off",
"no-bitwise": "off",
},
"ignorePatterns": [ "src/config.js", "src/config.*.js", "dist/*" ],
"overrides": [
{
"files": [ "src/**" ],
"rules": {
"no-console": "error"
}
},
{
"files": [ "src/plugins/**" ],
"rules": {
"no-console": "off"
}
},
{
"files": [
"**/*.js"
],
"env": {
"es2020": true,
"jest": true
}
}
]
}