-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.eslintrc
39 lines (39 loc) · 928 Bytes
/
.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
{
"extends": "airbnb-base",
"root": true,
"env": {
"browser": true,
"mocha": true,
"es6": true,
"jquery": true
},
"rules": {
"camelcase": [0],
"yoda": [2, "never", { "exceptRange": true }],
"max-len": [2, 140],
"new-cap": [0],
"import/prefer-default-export": [0],
"no-case-declarations": [2],
"no-confusing-arrow": [0],
"no-else-return": [0],
"no-mixed-operators": [0],
"no-multi-spaces": [0],
"no-param-reassign": [0],
"import/extensions": 0,
"no-plusplus": 0,
"no-restricted-syntax": [
2,
"DebuggerStatement",
"LabeledStatement",
"WithStatement"
],
"no-shadow": [0],
"no-use-before-define": [0],
"object-property-newline": [0],
"prefer-template": [0],
"quote-props": [0],
"space-before-function-paren": [2, "never"],
"strict": [2, "global"],
"linebreak-style": ["warn", "unix"]
}
}