-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
33 lines (33 loc) · 847 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
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"no-console": [
"error",
{
"allow": ["warn", "error", "info"]
}
],
"comma-dangle": 0,
"react/jsx-indent": [1, 4],
"indent": [1, 4],
"no-unused-vars": [1],
"react/jsx-filename-extension": [1, { "extensions": [".js"] }],
"no-tabs": [0],
"no-mixed-spaces-and-tabs": [0],
"object-curly-newline": [0],
"import/no-unresolved": [0],
"jsx-quotes": [0],
"import/no-dynamic-require": [0],
"global-require": [0],
"max-len": [0],
"no-debugger": [0],
"consistent-return": [0],
"arrow-parens": [0]
}
}