-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
executable file
·36 lines (36 loc) · 912 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
{
"parser": "babel-eslint",
"env": {
"browser": true
},
"extends": ["airbnb", "prettier", "prettier/react"],
"plugins": ["react", "jsx-a11y", "import", "prettier"],
"globals": {
"__DEV__": true
},
"rules": {
"arrow-parens": 0,
"global-require": 0,
"import/prefer-default-export": 0,
"no-console": 0,
"no-mixed-operators": 0,
"no-use-before-define": 0,
"radix": 0,
"react/destructuring-assignment": 0,
"react/jsx-filename-extension": 0,
"react/prop-types": 0,
"linebreak-style": ["off", "windows"],
"eqeqeq":0,
"lines-between-class-members":0,
"react/no-array-index-key": "off",
"no-underscore-dangle":"off",
"no-nested-ternary":0,
"react/no-string-refs":0,
"react/jsx-no-bind":0,
"no-restricted-syntax":0,
"camelcase":0,
"class-methods-use-this":0,
"guard-for-in":0,
"no-param-reassign":0
}
}