forked from AlexGilleran/jsx-control-statements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
36 lines (36 loc) · 833 Bytes
/
.eslintrc.json
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/legacy", "plugin:react/recommended", "plugin:jsx-control-statements/recommended"],
"plugins": [
"react",
"jsx-control-statements"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"brace-style": [2, "stroustrup"],
"quotes": [2, "double"],
"jsx-quotes": [2, "prefer-double"],
"new-cap": 0,
"func-names": 0,
"no-param-reassign": 0,
"space-before-function-paren": [2, "never"],
"max-len": [1, 120],
"consistent-return": 0,
"vars-on-top": 0,
"object-curly-spacing": 0,
"global-require": 0,
"react/display-name": 0,
"react/prop-types": 0,
"no-else-return": 0,
"no-plusplus": 0,
"no-multi-assign": 0,
"operator-linebreak": 0
},
"env": {
"mocha": true
}
}