forked from Monogatari/Monogatari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
55 lines (55 loc) · 1.13 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
50
51
52
53
54
55
{
"rules": {
"dot-notation": [2],
"indent": [2, "tab", {
"SwitchCase": 1,
"ObjectExpression": "first"
}
],
"quotes": [2, "single"],
"linebreak-style": [2, "unix"],
"no-console": [2, { "allow": ["warn", "error"] }],
"no-eq-null":[2],
"no-eval":[2],
"no-implied-eval":[2],
"no-redeclare": [2, { "builtinGlobals": true }],
"one-var": [2, "never"],
"prefer-const":[2],
"semi": [2, "always"],
"keyword-spacing":[2, {
"before": true,
"after": true,
"overrides": {
"if": {
"before": false
},
"for": {
"before": false
},
"while": {
"before": false
}
}
}
],
"space-before-blocks":[2, "always"],
"space-before-function-paren": [2, "always"],
"strict":[0, "global"],
"no-unused-vars": [1, { "args": "after-used" }]
},
"env": {
"es6": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"babelOptions": {
"configFile": "./.babelrc"
}
},
"extends": "eslint:recommended"
}