-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy path.eslintrc
executable file
·44 lines (44 loc) · 1012 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
41
42
43
44
{
"parser": "babel-eslint",
"plugins": [
"babel",
"flowtype"
],
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": false
}
},
"extends": [
"airbnb",
"plugin:flowtype/recommended"
],
"rules": {
"func-names": 0,
"no-new": 0,
"arrow-body-style": 0,
"consistent-return": 0,
"no-console": 0,
"no-unused-expressions": 0,
"max-len": 0,
"class-methods-use-this": 0,
"no-bitwise": 0,
"no-undef": 0,
"no-inner-declarations": 0,
"global-require": 0,
"no-restricted-syntax": 0,
"no-return-assign": 0,
"no-param-reassign": 0,
"import/no-dynamic-require": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"import/no-extraneous-dependencies": 0,
"jsx-a11y/label-has-for": 0,
"jsx-a11y/href-no-hash": 0,
"babel/new-cap": 0,
"babel/no-invalid-this": 0,
"babel/semi": 1,
"spaced-comment": 0,
"flowtype/no-types-missing-file-annotation": 0
}
}