-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
61 lines (61 loc) · 1.11 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
},
"env": {
"browser": true,
"node": true,
"jquery": false
},
"rules": {
"indent": [
"warn",
4
],
"max-len": [
"warn",
{
"code": 150
}
],
"react/jsx-indent": [
"warn",
4
],
"arrow-parens": [
"off"
],
"quotes": [
"error",
"single"
],
"compat/compat": "off",
"consistent-return": "off",
"comma-dangle": "off",
"generator-star-spacing": "off",
"import/no-unresolved": "error",
"import/no-extraneous-dependencies": "off",
"no-console": "off",
"no-use-before-define": "off",
"no-multi-assign": "off",
"prefer-template": "off",
"no-shadow": "off",
"linebreak-style": 0,
"array-bracket-spacing": "off",
"function-paren-newline": "off",
"camelcase": "off",
"no-nested-ternary": "off",
"object-curly-newline": [
"off"
]
},
"globals": {
"__DEV__": true
},
"plugins": [],
"settings": {
"polyfills": []
}
}