-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy path.eslintrc
More file actions
34 lines (34 loc) · 802 Bytes
/
Copy path.eslintrc
File metadata and controls
34 lines (34 loc) · 802 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"settings": {
"import/resolver": "webpack"
},
"env": {
"browser": true,
"mocha": true,
"node": true
},
"rules": {
"consistent-return": 0,
"comma-dangle": 0,
"no-use-before-define": 0,
"no-tabs": 0,
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"indent": ['error', 'tab'],
"react/jsx-filename-extension": 0,
"react/jsx-indent-props": ['error', 'tab'],
"react/jsx-indent": ['error', 'tab'],
"react/jsx-no-bind": 0,
"react/prefer-stateless-function": 0,
"object-curly-spacing": ['error', 'never'],
"func-names": 'off',
"quote-props": 'off',
"space-before-function-paren": ['error', 'never'],
},
"plugins": [
"import",
"react"
]
}