forked from goatslacker/alt
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc
40 lines (40 loc) · 880 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
37
38
39
40
{
"extends": "airbnb",
"env": {
"node": true,
"browser": true,
"es6": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaFeatures": {
"modules": true,
"jsx": true
}
},
"rules": {
"semi": [2, "never"],
"no-redeclare": 0,
"max-classes-per-file": 0,
"quotes": 0,
"indent": 0,
"import/no-import-module-exports": 0,
"no-useless-constructor": 0,
"no-multiple-empty-lines": 0,
"no-prototype-builtins": 0,
"no-param-reassign": 0,
"no-else-return": 0,
"prefer-spread": 0,
"no-underscore-dangle": 0,
"arrow-parens": 0,
"operator-linebreak": 0,
"no-return-assign": 0,
"comma-dangle": 0,
"object-shorthand": 0,
"no-plusplus": 0,
"no-unneeded-ternary": 0,
"class-methods-use-this": 0,
"prefer-destructuring": 0,
"arrow-body-style": 0
}
}