-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
54 lines (54 loc) · 1.2 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
{
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
"typescript": true
},
"globals": {
"Promise": true,
"Raven": true
},
"env": {
"browser": true,
"node": true
},
"rules": {
"semi": ["error", "always"],
"quotes": ["error", "single"],
"indent": [
2,
4,
{
"SwitchCase": 1
}
],
"react/jsx-indent": [2, 4],
"react/prop-types": [
1,
{
"ignore": [
"children",
"className",
"global",
"match",
"history",
"location"
]
}
],
"no-console": "warn"
},
"overrides": {
"files": ["**/*.ts", "**/*.tsx"],
"parser": "typescript-eslint-parser",
"rules": {
"no-undef": "off",
"no-unused-expression": false
}
}
}