forked from ApryseSDK/webviewer-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
105 lines (105 loc) · 1.77 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"parser": "babel-eslint",
"plugins": [
"babel",
"react",
"import",
"cypress"
],
"env": {
"browser": true,
"node": true,
"es6": true,
"cypress/globals": true
},
"globals": {
"$": false
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:cypress/recommended"
],
"rules": {
"quotes": [
2,
"single",
{
"allowTemplateLiterals": true
}
],
"curly": 2,
"strict": [
2,
"never"
],
"semi": [
2,
"always"
],
"no-redeclare": [
2,
{
"builtinGlobals": true
}
],
"brace-style": 2,
"no-alert": 0,
"no-console": [
2,
{
"allow": [
"warn",
"error"
]
}
],
"object-shorthand": [
2,
"always"
],
"arrow-parens": [
2,
"as-needed"
],
"no-useless-escape": 0,
"eqeqeq": 2,
"jsx-quotes": 2,
"indent": [
2,
2,
{
"MemberExpression": 1,
"ArrayExpression": 1,
"ImportDeclaration": 1,
"SwitchCase": 1,
"FunctionExpression": {
"body": 1
}
}
],
"keyword-spacing": 2,
"space-before-blocks": 2,
"arrow-spacing": 2,
"object-curly-spacing": [
2,
"always"
],
"react/jsx-closing-bracket-location": 2,
"react/jsx-curly-spacing": 2,
"react/jsx-boolean-value": 2,
"react/prop-types": 2,
"react/sort-comp": 0,
"react/no-find-dom-node": 0,
"react/display-name": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"import/no-dynamic-require": 0
},
"settings": {
"react": {
"version": "detect"
}
}
}