-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
43 lines (43 loc) · 875 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
module.exports = {
parser: "babel-eslint",
env: {
node: true,
browser: true,
es6: true,
mocha: true,
jest: true,
},
extends: [
"airbnb",
"plugin:flowtype/recommended",
"plugin:jsx-a11y/recommended",
"plugin:react/recommended",
"plugin:prettier/recommended",
],
globals: {
document: true,
window: true,
},
plugins: ["flowtype", "import", "prettier"],
rules: {
"global-require": 0,
"import/extensions": 0,
"import/no-dynamic-require": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"react/jsx-indent": 0,
"prettier/prettier": [
"error",
{
singleQuote: true,
trailingComma: "all",
},
],
"no-unused-vars": [2, { args: "none" }],
},
settings: {
flowtype: {
onlyFilesWithFlowAnnotation: true,
},
},
};