-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy path.eslintrc
More file actions
33 lines (33 loc) · 701 Bytes
/
.eslintrc
File metadata and controls
33 lines (33 loc) · 701 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
28
29
30
31
32
33
{
"extends": "eslint:recommended",
"env": {
"browser": true,
"node": true,
"amd": true
},
"rules": {
"strict": [2, "function"],
"semi": [2, "always"],
"curly": 2,
"dot-notation": 2,
"radix": 2,
"wrap-iife": 2,
"eqeqeq": 2,
"block-scoped-var": 2,
"consistent-return": 2,
"no-console": 0,
"no-alert": 2,
"no-new-wrappers": 2,
"no-native-reassign": 2,
"no-extend-native": 2,
"no-implicit-coercion": 2,
"no-sequences": 2,
"no-unused-expressions": 2,
"no-useless-call": 2,
"no-useless-concat": 2,
"no-warning-comments": 2,
"no-shadow-restricted-names": 2,
"no-undef-init": 2,
"no-with": 2
}
}