forked from himynameisdave/git-labelmaker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
30 lines (30 loc) · 768 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
{
"extends": "airbnb-base",
"env": {
"browser": false,
"node": true,
"es6": true,
"jest": true
},
"rules": {
"arrow-parens": [0],
"indent": [2, 4, { "SwitchCase": 1, "VariableDeclarator": 1 }],
"max-len": [0],
"no-console": [0],
"no-multi-spaces": [0],
"no-plusplus": [0],
"no-underscore-dangle": [0],
"global-require": [0],
"comma-dangle": [2, {
"arrays": "ignore",
"objects": "always",
"imports": "always",
"exports": "always",
"functions": "ignore"
}],
"key-spacing": [0],
"radix": [0],
"strict": [0, "never"],
"import/extensions": [0]
}
}