-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
27 lines (27 loc) · 703 Bytes
/
Copy path.eslintrc.json
File metadata and controls
27 lines (27 loc) · 703 Bytes
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
{
"env": {
"browser": true,
"commonjs": true,
"node": true
},
"rules": {
"no-const-assign": ["error"],
"no-dupe-else-if": ["error"],
"no-dupe-keys": ["error"],
"no-empty-pattern": ["error"],
"no-extra-parens": ["error"],
"no-extra-semi": ["error"],
"no-func-assign": ["error"],
"no-global-assign": ["error"],
"no-implicit-globals": ["error"],
"no-inner-declarations": ["error"],
"no-invalid-regexp": ["error"],
"no-redeclare": ["error"],
"no-tabs": ["error"],
"no-unreachable": ["error"],
"no-unsafe-negation": ["error"],
"quotes": ["error", "double"],
"semi": ["error", "never"],
"valid-typeof": ["error"]
}
}