-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
44 lines (44 loc) · 1.05 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
{
"env": {
"es6": false
},
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "script"
},
"rules": {
"dot-notation": "error",
"constructor-super": "error",
"curly": "off",
"eqeqeq": "error",
"linebreak-style": "error",
"no-bitwise": "error",
"no-cond-assign": "off",
"no-debugger": "off",
"no-eq-null": "error",
"no-eval": "error",
"no-loop-func": "error",
"no-caller": "error",
"no-script-url": "error",
"no-shadow": "off",
"no-new-func": "off",
"no-new-wrappers": "off",
"no-empty": "error",
"no-new": "error",
"no-plusplus": "off",
"no-undef": "error",
"no-unused-expressions": "off",
"no-unused-vars": "error",
"no-use-before-define": "error",
"semi": [
"error",
"always"
],
"strict": "off",
"quotes": "off",
"wrap-iife": [
"error",
"any"
]
}
}