-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
59 lines (59 loc) · 1.64 KB
/
.eslintrc.json
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
53
54
55
56
57
58
59
{
"env": {
"browser": true,
"es6": true,
"jest/globals": true
},
"extends": [
"plugin:flowtype/recommended",
"plugin:import/recommended",
"plugin:react/recommended",
"airbnb"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"flowtype",
"react",
"jest"
],
"rules": {
"class-methods-use-this": "off",
"comma-dangle": "off",
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"jsx-a11y/media-has-caption": "off",
"jsx-quotes": ["error", "prefer-single"],
"lines-between-class-members": "off",
"max-len": ["error", { "code": 120, "ignoreStrings": true }],
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"import/no-unresolved": ["error", { "ignore": ["@samvera/clover-iiif.*"] }],
"import/prefer-default-export": "off",
"react/no-array-index-key": "off",
"react/default-props-match-prop-types": "off",
"react/destructuring-assignment": "off",
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/jsx-no-bind": "off",
"react/no-did-update-set-state": "off",
"react/prefer-stateless-function": "off",
"react/require-default-props": "off",
"react/jsx-props-no-spreading": "off",
"react/sort-comp": "off",
"react/static-property-placement": "off",
"quote-props": ["error", "as-needed", {
"keywords": false,
"unnecessary": true,
"numbers": true
}]
}
}