forked from folio-org/ui-marccat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
52 lines (52 loc) · 1.34 KB
/
.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
44
45
46
47
48
49
50
51
52
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
experimentalObjectRestSpread: true,
},
},
plugins: [
"flowtype"
],
extends: [
"@folio/eslint-config-stripes",
"plugin:flowtype/recommended"
],
settings: {
"import/resolver": "webpack"
},
env: {
browser: true
},
globals: {
process: true,
Promise: true
},
rules: {
"import/extensions": 0,
"flowtype/no-types-missing-file-annotation": 0,
"no-warning-comments": [2, { "terms": ["flowtype/no-types-missing-file-annotation", "flow-typed signature", "flow-typed version"], "location": "start"}],
"indent": ["error", 2],
"react/jsx-indent": ["error", 2],
"react/forbid-prop-types":"off",
"padded-blocks": "off",
"no-console": "off",
"spaced-comment": ["error", "always", { "markers": ["/"] }],
"arrow-parens": "off",
"no-return-assign":"off",
"no-alert":"off",
"guard-for-in": "off",
"jsx-a11y/no-noninteractive-element-interactions":"off",
"no-undef": "warn",
"object-curly-newline": "off",
"import/no-named-as-default": "off",
"import/no-extraneous-dependencies": "off",
"react/sort-comp": "off",
"react/prop-types" : "off",
"react/destructuring-assignment": ["error"],
}
}