forked from pheuter/essential-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
38 lines (37 loc) · 778 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
{
"globals": {
"window": true,
"$": true,
"use": true,
"granite": true
},
"env": {
"browser": true,
"es6": true,
"jest": true
},
"root": true,
"rules": {
"quotes": [ 1, "single" ],
"comma-dangle": ["error", {
"functions": "never"
}],
"no-bitwise": ["error", {
"allow": ["~"]
}],
"no-plusplus": ["error", {
"allowForLoopAfterthoughts": true
}],
"import/no-extraneous-dependencies": ["error", {
"devDependencies": [
"**/*.test.js?",
"webpack/*"
]
}],
"indent": ["error", 2],
"react/prop-types": 0,
"arrow-body-style": 0,
"linebreak-style": 0,
"max-len": 0
}
}