-
Notifications
You must be signed in to change notification settings - Fork 40
/
.eslintrc
33 lines (33 loc) · 1 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
{
"extends": "eslint-config-airbnb",
"rules": {
"indent": ["warn", 4],
"comma-dangle": 0,
"padded-blocks": 0,
"camelcase": 0,
"prefer-template":0,
"no-param-reassign": 0,
"object-property-newline": 0,
"no-restricted-syntax": 0,
"no-return-assign": ["error", "except-parens"],
"object-shorthand": 0,
"no-shadow": 0,
"arrow-body-style": ["warn", "never"],
"no-underscore-dangle": ["error", { "allowAfterThis": true, "allow": ["__store"] }],
"no-trailing-spaces": 0,
"max-len": ["warn", { "code": 180 }],
"no-multiple-empty-lines": 0,
"no-console": 0,
"react/jsx-indent": 0,
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": [2, { "ignore": ["electron"] }],
"linebreak-style": 0,
"react/prefer-stateless-function": 0,
"react/jsx-closing-bracket-location": 0,
"react/prop-types": 0,
"react/jsx-first-prop-new-line": 0,
"react/jsx-indent-props": 0,
"react/sort-comp": 0
}
}