-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc
41 lines (41 loc) · 1.03 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
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"allowImportExportEverywhere": true
},
"env": {
"node": true
},
"extends": ["airbnb-base", "prettier"],
"rules": {
"arrow-parens": ["off"],
"import/prefer-default-export": "off",
"import/no-unresolved": "off",
"import/no-extraneous-dependencies": "off",
"no-multi-assign": "off",
"import/extensions": "off",
"class-methods-use-this": "off",
"function-paren-newline": ["error", "consistent"],
"no-unused-expressions": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"consistent-return": "off",
"no-console": "off",
"no-restricted-syntax": "off",
"import/no-cycle": "off",
"quotes": ["error", "single"],
"max-len": [
"error",
{
"code": 90,
"ignoreComments": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}
]
},
"plugins": ["flowtype", "import"]
}