-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
51 lines (51 loc) 路 969 Bytes
/
Copy path.eslintrc.json
File metadata and controls
51 lines (51 loc) 路 969 Bytes
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
{
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"jest": true
},
"plugins": [
"react",
"jest"
],
"globals": {
"Promise": true,
"Symbol": true,
"ArrayBuffer": true,
"Uint8Array": true
},
"rules": {
"indent": ["error", 2, {
"SwitchCase": 1
}],
"space-before-blocks": [2, {
"functions": "always",
"keywords": "always",
"classes": "always"
}],
"space-before-function-paren": 2,
"no-console": 0,
"new-cap": 0,
"strict": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"eol-last": 0,
"quotes": [2, "single"],
"jsx-quotes": 1,
"react/jsx-no-undef": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1
}
}