forked from ApryseSDK/webviewer-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
100 lines (99 loc) · 2.22 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
{
"parser": "babel-eslint",
"plugins": ["babel", "react", "react-hooks", "import", "cypress"],
"env": {
"browser": true,
"node": true,
"es6": true,
"cypress/globals": true,
"jest": true
},
"globals": {
"_": false,
"Annotations": false,
"Tools": false
},
"extends": [
"plugin:jsx-a11y/recommended",
"eslint:recommended",
"plugin:react/recommended",
"plugin:cypress/recommended"
],
"rules": {
"quotes": [
0,
"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
},
"ignoredNodes": ["TemplateLiteral"]
}
],
"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-hooks/rules-of-hooks": 2,
"react-hooks/exhaustive-deps": 1,
"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,
"@pdftron/webviewer/no-string-events": 0,
// these are inherited from git WebViewer's eslint confirguration
"no-use-before-define": 0,
"implicit-arrow-linebreak": 0,
"operator-linebreak": 0,
"function-paren-newline": 0,
"object-curly-newline": 0,
"no-nested-ternary": 0,
"no-unexpected-multiline": 0,
"no-unused-expressions": 0
},
"settings": {
"react": {
"version": "detect"
}
}
}