forked from washingtonpost/ArcAds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
44 lines (44 loc) · 906 Bytes
/
.eslintrc.js
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
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
node: true
},
extends: 'airbnb-base',
parserOptions: {
sourceType: 'module',
ecmaFeatures: {
jsx: true
}
},
rules: {
'no-console': 0,
'class-methods-use-this': 0,
'import/prefer-default-export': 0,
'import/no-named-as-default': 0,
'import/no-extraneous-dependencies': 0,
'func-names': 0,
'prefer-arrow-callback': 0,
'consistent-return': 0,
"object-curly-newline": [
"error",
{
"minProperties": 3,
"multiline": true,
}
],
"spaced-comment": 0,
"comma-dangle": 0,
"semi": 2,
"no-prototype-builtins": 0,
"object-curly-newline": 0,
"no-restricted-syntax": 0,
"max-len": 0,
"no-plusplus": 0,
"no-undef": 0,
"arrow-body-style": 0,
"no-use-before-define": 0,
"radix": 0
}
};