forked from moroshko/react-baseline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
45 lines (44 loc) · 1.32 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"env": {
"es6": true,
"node": true,
"browser": true
},
"parser": "babel-eslint",
"plugins": [
"react"
],
"extends": "plugin:react/recommended",
"rules": {
"array-callback-return": 2,
"brace-style": [2, "1tbs"],
"camelcase": [2, { "properties": "always" }],
"comma-dangle": [2, "never"],
"comma-style": [2, "last"],
"eol-last": 2,
"indent": [2, 2, { "SwitchCase": 1 }],
"jsx-quotes": [2, "prefer-double"],
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
"keyword-spacing": 2,
"linebreak-style": [2, "unix"],
"no-cond-assign": [2, "always"],
"no-console": 2,
"no-multiple-empty-lines": [2, { "max": 1 }],
"no-spaced-func": 2,
"no-trailing-spaces": 2,
"no-unused-vars": [2, {"vars": "all", "args": "after-used"}],
"no-whitespace-before-property": 2,
"newline-after-var": [2, "always"],
"object-curly-spacing": [2, "always"],
"prefer-rest-params": 2,
"quote-props": [2, "as-needed"],
"quotes": [2, "single"],
"semi": [2, "always"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "never"],
"space-in-parens": [2, "never"],
"template-curly-spacing": [2, "never"],
"react/jsx-boolean-value": [2, "always"],
"react/jsx-space-before-closing": [2, "always"]
}
}