forked from sdg9/why-did-you-update
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
45 lines (45 loc) · 978 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
45
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"plugin:jsx-a11y/recommended",
"prettier",
"prettier/react"
],
"env": {
"browser": true,
"es6": true
},
"plugins": [
"jsx-a11y",
"prettier",
"react"
],
"rules": {
"prettier/prettier": ["error", {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 200
}],
"no-await-in-loop": 0,
"no-return-await": 0,
"react/jsx-filename-extension": 0,
"react/no-array-index-key": 0,
"react/require-default-props": 0,
"import/extensions": 0,
"import/first": 0,
"import/no-absolute-path": 0,
"import/no-duplicates": 0,
"import/no-extraneous-dependencies": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"import/no-unresolved": 0,
"import/no-webpack-loader-syntax": 0,
"max-len": "off"
}
}