-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc
36 lines (36 loc) · 945 Bytes
/
.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
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"es6": true
},
"ecmaFeatures": {
"restParams": true,
"experimentalObjectRestSpread": true
},
"globals": {
"__DEVELOPMENT__": false
},
"rules": {
"comma-dangle": [0, "never"],
"spaced-comment": [0, "always"],
"object-curly-spacing": [0, "never"],
"func-names": 0,
"quotes": 0,
"react/jsx-quotes": 0,
"react/no-danger": 0,
"jsx-quotes": 2,
"indent": [2, 2, {"SwitchCase": 1}],
"no-nested-ternary": 0,
"no-unused-expressions": 0,
"no-undef": 0,
"prefer-arrow-callback": [0, { "allowNamedFunctions": true }],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"]}],
"react/forbid-prop-types": [0, {"forbid": []}],
"react/prefer-stateless-function": 0,
"newline-after-import": 0,
"import/no-extraneous-dependencies": ["error", {
"devDependencies": true}
]
}
}