-
Notifications
You must be signed in to change notification settings - Fork 14
/
.eslintrc
46 lines (46 loc) · 1.09 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
46
{
"parser": "babel-eslint",
"rules": {
"indent": "off",
"no-alert": 0,
"consistent-return": 0,
"max-len": 0,
"import/first": 0,
"no-mixed-operators": 0,
"class-methods-use-this": 0,
"no-template-curly-in-string": 0,
"no-underscore-dangle": 0,
"prefer-spread": 0,
"no-plusplus": 0,
"no-restricted-syntax": 0,
"no-prototype-builtins": 0,
"no-useless-escape": 0,
"global-require": 0,
"newline-per-chained-call": 0,
"arrow-parens": 0,
"prefer-destructuring": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"import/prefer-default-export": "off",
"function-paren-newline": "off",
"curly": "off",
"object-curly-newline": "off",
"operator-linebreak": [
"error",
"after",
{ "overrides": { "?": "before", ":": "before" } }
],
"nonblock-statement-body-position": 0,
"implicit-arrow-linebreak": 0,
"import/no-cycle": "off"
},
"globals": {
"$": true,
"jQuery": true
},
"env": {
"es6": true,
"browser": true
},
"extends": "airbnb/base"
}