-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc.json
More file actions
executable file
·38 lines (38 loc) · 971 Bytes
/
.eslintrc.json
File metadata and controls
executable file
·38 lines (38 loc) · 971 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
{
"parser": "babel-eslint",
"extends": ["eslint:recommended", "plugin:flowtype/recommended", "google"],
"plugins": ["import", "flowtype"],
"env": {
"es6": true,
"node": true,
"browser": true,
"shared-node-browser": true
},
"parserOptions": {
"impliedStrict": true,
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"rules": {
"no-console": [0],
"no-invalid-this": [0],
"no-param-reassign": [0],
"indent": [2, 2],
"quotes": [2, "double"],
"space-in-parens": [2, "never"],
"require-jsdoc": [0],
"react/sort-comp": [0],
"react/no-danger": [0],
"react/no-array-index-key": [0],
"react/require-default-props": [0],
"react/prefer-stateless-function": [0],
"global-require": [0],
"import/first": [0],
"import/prefer-default-export": [0],
"import/no-extraneous-dependencies": [0]
}
}