forked from step-8/scotland-yard-byomkesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
140 lines (140 loc) · 2.79 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"env": {
"commonjs": true,
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"indent": [
"error",
2
],
// "quotes": [
// "error",
// "single"
// ],
"linebreak-style": [
"error",
"unix"
],
"semi": [
"error",
"always"
],
"camelcase": "error",
"class-methods-use-this": "warn",
"array-bracket-spacing": [
"error"
],
"comma-spacing": "error",
"arrow-spacing": "error",
"no-var": "error",
"curly": "error",
"brace-style": "error",
"eol-last": "warn",
"eqeqeq": "warn",
"getter-return": "error",
"grouped-accessor-pairs": "warn",
"global-require": "error",
"handle-callback-err": "error",
"id-length": "off",
"key-spacing": "error",
// "max-len": "error",
"max-params": [
"error",
{
"max": 4
}
],
// "max-statements": "error",
"no-console": "warn",
"no-else-return": "error",
"no-eval": "error",
"no-implicit-globals": "error",
"prefer-const": "error",
"no-magic-numbers": "off",
"no-process-exit": "error",
"no-process-env": "off",
"no-return-assign": "error",
"no-useless-return": "error",
"no-undef": "off",
"max-depth": "error",
"no-mixed-operators": "error",
// "complexity": [
// "error",
// 4
// ],
"no-extra-parens": "error",
"no-template-curly-in-string": "error",
"array-callback-return": "error",
"default-param-last": "error",
"no-constructor-return": "error",
"no-invalid-this": "error",
"no-lone-blocks": "error",
"no-loop-func": "error",
"no-proto": "error",
"prefer-spread": "warn",
"no-useless-call": "error",
"no-param-reassign": "error",
"space-infix-ops": "error",
"no-multi-spaces": "error",
"semi-spacing": "error",
"no-multiple-empty-lines": [
"error",
{
"max": 1
}
]
},
"overrides": [
{
"files": [
"test*.js"
],
"rules": {
"max-len": "off",
"max-statements": "off",
"handle-callback-err": "off"
}
},
{
"files": [
"app.js"
],
"rules": {
"max-statements": "off",
"max-params": [
"off"
]
}
},
{
"files": [
"public/js/*/*",
"public/js/*",
"public/css/*"
],
"rules": {
"no-unused-vars": "off",
"no-extra-parens": "off"
}
},
{
"files": [
"public/js/game/svgLib.js"
],
"rules": {
"no-mixed-operators": "off"
}
}
]
}