-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
.eslintrc
36 lines (36 loc) · 920 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
{
"extends": ["airbnb", "plugin:flowtype/recommended"],
"rules": {
"flowtype/define-flow-type": 2,
"react/prop-types": 0,
"react/no-unused-prop-types": 0,
"react/jsx-filename-extension": 0,
"react/no-did-update-set-state": 0,
"global-require": 0,
"jsx-a11y/alt-text": 0,
"max-len": 0,
"no-underscore-dangle": 0,
"import/first": 0,
"indent": 0,
"import/no-named-as-default": 0,
"no-plusplus": 0,
"arrow-parens": 0,
"no-console": 0,
"implicit-arrow-linebreak": 0,
"prefer-destructuring": 0,
"operator-linebreak": 0,
"object-curly-newline": 0,
"function-paren-newline": 0,
"react/destructuring-assignment": 0,
"react/require-default-props": 0,
"no-confusing-arrow": 0,
"react/sort-comp": 0
},
"env": {
"browser": true,
"node": true,
"jest": true
},
"parser": "babel-eslint",
"plugins": ["flowtype"]
}