-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
38 lines (38 loc) · 888 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
37
38
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"parser": "babel-eslint",
"extends": "airbnb",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["react"],
"rules": {
"implicit-arrow-linebreak": 0,
"react/prop-types": 0,
"class-methods-use-this": 0,
"no-underscore-dangle": 0,
"consistent-return": 0,
"no-console": 0,
"react/jsx-filename-extension": 0,
"no-use-before-define": 0,
"global-require": 0,
"no-alert": 0,
"no-nested-ternary": 0,
"no-return-assign": 0,
"no-mixed-operators": 0,
"import/no-unresolved": 0,
"react/no-string-refs": 0,
"indent": ["error", 2, { "SwitchCase": 1 }],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "never"]
}
}