eslint-config-dolmios 1.3.6 → 1.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/index.js +56 -229
- package/package.json +16 -11
- package/reference.txt +1012 -0
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# eslint-config-dolmios
|
|
2
2
|
|
|
3
|
-
> A simple ESLint setup using [@typescript-eslint](https://typescript-eslint.io), with Prettier and a couple TSConfig
|
|
3
|
+
> A simple ESLint setup using [@typescript-eslint](https://typescript-eslint.io), with Prettier and a couple TSConfig setups.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
|
-
```
|
|
8
|
-
|
|
7
|
+
```sh
|
|
8
|
+
pnpm add eslint-config-dolmios
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
@@ -38,7 +38,7 @@ Prettier is configured to work nicely with this config, though is an optional in
|
|
|
38
38
|
|
|
39
39
|
#### Extending Prettier
|
|
40
40
|
|
|
41
|
-
>
|
|
41
|
+
> The above method does **not** offer a way to _extend_ the configuration to overwrite some properties from the shared configuration. If you need to do that, import the file in a `.prettierrc.js` file and export the modifications.
|
|
42
42
|
> [https://prettier.io/docs/en/](https://prettier.io/docs/en/configuration.html#sharing-configurations)
|
|
43
43
|
|
|
44
44
|
```js
|
package/index.js
CHANGED
|
@@ -1,87 +1,37 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
-
env: {
|
|
3
|
-
browser: true,
|
|
4
|
-
es6: true,
|
|
5
|
-
node: true,
|
|
6
|
-
},
|
|
7
2
|
extends: [
|
|
8
|
-
"plugin:@typescript-eslint/recommended",
|
|
9
3
|
"plugin:import/recommended",
|
|
10
|
-
"
|
|
4
|
+
"next/core-web-vitals",
|
|
5
|
+
"plugin:@typescript-eslint/recommended",
|
|
6
|
+
"prettier",
|
|
11
7
|
],
|
|
12
8
|
parser: "@typescript-eslint/parser",
|
|
13
|
-
plugins: ["sort-keys
|
|
14
|
-
root: true,
|
|
9
|
+
plugins: ["typescript-sort-keys"],
|
|
15
10
|
rules: {
|
|
16
|
-
"@
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"@typescript-eslint/explicit-function-return-type": "
|
|
20
|
-
"@typescript-eslint/func-call-spacing": "off",
|
|
21
|
-
"@typescript-eslint/indent": "off",
|
|
22
|
-
"@typescript-eslint/keyword-spacing": "off",
|
|
23
|
-
"@typescript-eslint/member-delimiter-style": "off",
|
|
24
|
-
"@typescript-eslint/no-explicit-any": "warn",
|
|
25
|
-
"@typescript-eslint/no-extra-parens": "off",
|
|
26
|
-
"@typescript-eslint/no-extra-semi": "off",
|
|
11
|
+
"@next/next/no-html-link-for-pages": "off",
|
|
12
|
+
"typescript-sort-keys/interface": "error",
|
|
13
|
+
"typescript-sort-keys/string-enum": "error",
|
|
14
|
+
"@typescript-eslint/explicit-function-return-type": "warn",
|
|
27
15
|
"@typescript-eslint/no-non-null-assertion": "error",
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"array-element-newline": "off",
|
|
47
|
-
"arrow-parens": "off",
|
|
48
|
-
"arrow-spacing": "off",
|
|
49
|
-
"block-spacing": "off",
|
|
50
|
-
"brace-style": "off",
|
|
51
|
-
camelcase: [
|
|
52
|
-
"error",
|
|
53
|
-
{
|
|
54
|
-
properties: "never",
|
|
55
|
-
},
|
|
56
|
-
],
|
|
57
|
-
"comma-dangle": "off",
|
|
58
|
-
"comma-spacing": "off",
|
|
59
|
-
"comma-style": "off",
|
|
60
|
-
"computed-property-spacing": "off",
|
|
61
|
-
curly: 0,
|
|
62
|
-
"dot-location": "off",
|
|
63
|
-
"eol-last": "off",
|
|
64
|
-
"func-call-spacing": "off",
|
|
65
|
-
"func-names": ["error", "as-needed"],
|
|
66
|
-
"function-call-argument-newline": "off",
|
|
67
|
-
"function-paren-newline": "off",
|
|
68
|
-
"generator-star": "off",
|
|
69
|
-
"generator-star-spacing": "off",
|
|
70
|
-
"implicit-arrow-linebreak": "off",
|
|
71
|
-
"import/export": "error",
|
|
16
|
+
"jsx-a11y/aria-role": "warn",
|
|
17
|
+
"jsx-a11y/autocomplete-valid": "warn",
|
|
18
|
+
"jsx-a11y/click-events-have-key-events": "warn",
|
|
19
|
+
"jsx-a11y/heading-has-content": "warn",
|
|
20
|
+
"jsx-a11y/iframe-has-title": "warn",
|
|
21
|
+
"jsx-a11y/html-has-lang": "warn",
|
|
22
|
+
"jsx-a11y/img-redundant-alt": "warn",
|
|
23
|
+
"jsx-a11y/interactive-supports-focus": "warn",
|
|
24
|
+
"jsx-a11y/label-has-associated-control": "warn",
|
|
25
|
+
"jsx-a11y/lang": "warn",
|
|
26
|
+
"jsx-a11y/media-has-caption": "warn",
|
|
27
|
+
"jsx-a11y/mouse-events-have-key-events": "warn",
|
|
28
|
+
"jsx-a11y/no-access-key": "warn",
|
|
29
|
+
"jsx-a11y/no-autofocus": "warn",
|
|
30
|
+
"jsx-a11y/no-distracting-elements": "warn",
|
|
31
|
+
"jsx-a11y/no-redundant-roles": "warn",
|
|
32
|
+
"jsx-a11y/no-static-element-interactions": "warn",
|
|
33
|
+
"jsx-a11y/scope": "warn",
|
|
72
34
|
"import/first": "warn",
|
|
73
|
-
"import/named": "warn",
|
|
74
|
-
"import/namespace": "error",
|
|
75
|
-
"import/no-deprecated": "error",
|
|
76
|
-
"import/no-duplicates": "error",
|
|
77
|
-
"import/no-extraneous-dependencies": [
|
|
78
|
-
"error",
|
|
79
|
-
{
|
|
80
|
-
devDependencies: true,
|
|
81
|
-
},
|
|
82
|
-
],
|
|
83
|
-
"import/no-named-as-default": "off",
|
|
84
|
-
"import/no-unresolved": "warn",
|
|
85
35
|
"import/order": [
|
|
86
36
|
"error",
|
|
87
37
|
{
|
|
@@ -93,159 +43,36 @@ module.exports = {
|
|
|
93
43
|
"newlines-between": "always",
|
|
94
44
|
},
|
|
95
45
|
],
|
|
96
|
-
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"no-
|
|
107
|
-
"no-
|
|
108
|
-
"no-
|
|
109
|
-
"no-
|
|
110
|
-
"no-
|
|
111
|
-
"no-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
allow: ["error", "warn"],
|
|
115
|
-
},
|
|
116
|
-
],
|
|
117
|
-
|
|
118
|
-
"no-continue": "error",
|
|
119
|
-
"no-duplicate-imports": [
|
|
120
|
-
"error",
|
|
121
|
-
{
|
|
122
|
-
includeExports: true,
|
|
123
|
-
},
|
|
124
|
-
],
|
|
125
|
-
"no-eq-null": "error",
|
|
126
|
-
"no-eval": "error",
|
|
127
|
-
"no-extend-native": "error",
|
|
128
|
-
"no-extra-bind": "error",
|
|
129
|
-
"no-extra-label": "error",
|
|
130
|
-
"no-extra-parens": "off",
|
|
131
|
-
"no-extra-semi": "off",
|
|
132
|
-
"no-floating-decimal": "off",
|
|
133
|
-
"no-invalid-this": "error",
|
|
134
|
-
"no-iterator": "error",
|
|
135
|
-
"no-label-var": "error",
|
|
136
|
-
"no-labels": [
|
|
137
|
-
"error",
|
|
138
|
-
{
|
|
139
|
-
allowLoop: false,
|
|
140
|
-
allowSwitch: false,
|
|
141
|
-
},
|
|
142
|
-
],
|
|
143
|
-
"no-lone-blocks": "error",
|
|
144
|
-
"no-mixed-operators": [
|
|
145
|
-
"error",
|
|
146
|
-
{
|
|
147
|
-
allowSamePrecedence: false,
|
|
148
|
-
groups: [
|
|
149
|
-
["&", "|", "^", "~", "<<", ">>", ">>>"],
|
|
150
|
-
["==", "!=", "===", "!==", ">", ">=", "<", "<="],
|
|
151
|
-
["&&", "||"],
|
|
152
|
-
["in", "instanceof"],
|
|
153
|
-
],
|
|
154
|
-
},
|
|
155
|
-
],
|
|
156
|
-
"no-mixed-spaces-and-tabs": "off",
|
|
157
|
-
"no-multi-spaces": "off",
|
|
158
|
-
"no-multi-str": "error",
|
|
159
|
-
"no-multiple-empty-lines": "off",
|
|
160
|
-
"no-new": "error",
|
|
161
|
-
"no-new-func": "error",
|
|
162
|
-
"no-new-object": "error",
|
|
163
|
-
"no-new-wrappers": "error",
|
|
164
|
-
"no-octal-escape": "error",
|
|
165
|
-
"no-proto": "error",
|
|
166
|
-
"no-reserved-keys": "off",
|
|
167
|
-
"no-space-before-semi": "off",
|
|
168
|
-
"no-tabs": 0,
|
|
169
|
-
"no-template-curly-in-string": "error",
|
|
170
|
-
"no-trailing-spaces": "off",
|
|
171
|
-
"no-undef": "off",
|
|
172
|
-
"no-unexpected-multiline": 0,
|
|
46
|
+
"no-alert": "warn",
|
|
47
|
+
"no-console": "warn",
|
|
48
|
+
"no-empty": "warn",
|
|
49
|
+
"no-duplicate-imports": "warn",
|
|
50
|
+
"no-eq-null": "warn",
|
|
51
|
+
"no-eval": "warn",
|
|
52
|
+
"no-extra-bind": "warn",
|
|
53
|
+
"no-extra-label": "warn",
|
|
54
|
+
"no-invalid-this": "warn",
|
|
55
|
+
"no-iterator": "warn",
|
|
56
|
+
"no-label-var": "warn",
|
|
57
|
+
"no-labels": "warn",
|
|
58
|
+
"no-lone-blocks": "warn",
|
|
59
|
+
"no-multi-str": "warn",
|
|
60
|
+
"no-new": "warn",
|
|
61
|
+
"no-octal-escape": "warn",
|
|
62
|
+
"no-proto": "warn",
|
|
63
|
+
"no-template-curly-in-string": "warn",
|
|
173
64
|
"no-unreachable-loop": "error",
|
|
174
|
-
"no-unused-expressions":
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
functions: false,
|
|
187
|
-
},
|
|
188
|
-
],
|
|
189
|
-
"no-useless-call": "error",
|
|
190
|
-
"no-useless-concat": "error",
|
|
191
|
-
"no-whitespace-before-property": "off",
|
|
192
|
-
"no-wrap-func": "off",
|
|
193
|
-
"nonblock-statement-body-position": "off",
|
|
194
|
-
"object-curly-newline": "off",
|
|
195
|
-
"object-curly-spacing": "off",
|
|
196
|
-
"object-property-newline": "off",
|
|
197
|
-
"one-var": [
|
|
198
|
-
"error",
|
|
199
|
-
{
|
|
200
|
-
initialized: "never",
|
|
201
|
-
},
|
|
202
|
-
],
|
|
203
|
-
"one-var-declaration-per-line": "off",
|
|
204
|
-
"operator-linebreak": "off",
|
|
205
|
-
"padded-blocks": "off",
|
|
206
|
-
"quote-props": "off",
|
|
207
|
-
quotes: 0,
|
|
208
|
-
"rest-spread-spacing": "off",
|
|
209
|
-
semi: "off",
|
|
210
|
-
"semi-spacing": "off",
|
|
211
|
-
"semi-style": "off",
|
|
212
|
-
"sort-keys-fix/sort-keys-fix": "error",
|
|
213
|
-
"space-after-function-name": "off",
|
|
214
|
-
"space-after-keywords": "off",
|
|
215
|
-
"space-before-blocks": "off",
|
|
216
|
-
"space-before-function-paren": "off",
|
|
217
|
-
"space-before-function-parentheses": "off",
|
|
218
|
-
"space-before-keywords": "off",
|
|
219
|
-
"space-in-brackets": "off",
|
|
220
|
-
"space-in-parens": "off",
|
|
221
|
-
"space-infix-ops": "error",
|
|
222
|
-
"space-return-throw-case": "off",
|
|
223
|
-
"space-unary-ops": [
|
|
224
|
-
"error",
|
|
225
|
-
{
|
|
226
|
-
nonwords: false,
|
|
227
|
-
words: true,
|
|
228
|
-
},
|
|
229
|
-
],
|
|
230
|
-
"space-unary-word-ops": "off",
|
|
231
|
-
"spaced-comment": [
|
|
232
|
-
"error",
|
|
233
|
-
"always",
|
|
234
|
-
{
|
|
235
|
-
line: {
|
|
236
|
-
exceptions: ["-"],
|
|
237
|
-
},
|
|
238
|
-
},
|
|
239
|
-
],
|
|
240
|
-
"switch-colon-spacing": "off",
|
|
241
|
-
"template-curly-spacing": ["error", "never"],
|
|
242
|
-
"template-tag-spacing": "off",
|
|
243
|
-
"unicode-bom": "off",
|
|
244
|
-
"vue/html-self-closing": 0,
|
|
245
|
-
"vue/max-len": 0,
|
|
246
|
-
"wrap-iife": "off",
|
|
247
|
-
"wrap-regex": "off",
|
|
248
|
-
"yield-star-spacing": "off",
|
|
249
|
-
yoda: ["error", "never"],
|
|
65
|
+
"no-unused-expressions": "warn",
|
|
66
|
+
"no-useless-call": "warn",
|
|
67
|
+
"no-useless-concat": "warn",
|
|
68
|
+
"no-useless-escape": "warn",
|
|
69
|
+
"no-useless-return": "warn",
|
|
70
|
+
"no-use-before-define": "warn",
|
|
71
|
+
yoda: "warn",
|
|
72
|
+
},
|
|
73
|
+
settings: {
|
|
74
|
+
next: {
|
|
75
|
+
rootDir: "./",
|
|
76
|
+
},
|
|
250
77
|
},
|
|
251
78
|
};
|
package/package.json
CHANGED
|
@@ -1,36 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-dolmios",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "1.3.
|
|
3
|
+
"description": "A simple ESLint config with Prettier and a couple TSConfig setups",
|
|
4
|
+
"version": "1.3.8",
|
|
5
5
|
"author": "Jackson Dolman <mail@dolmios.com>",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/dolmios/eslint-config-dolmios/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
11
|
-
"@typescript-eslint/parser": "^5.
|
|
12
|
-
"eslint": "^8.
|
|
13
|
-
"eslint-
|
|
14
|
-
"eslint-
|
|
10
|
+
"@typescript-eslint/eslint-plugin": "^5.48.0",
|
|
11
|
+
"@typescript-eslint/parser": "^5.48.0",
|
|
12
|
+
"eslint": "^8.31.0",
|
|
13
|
+
"eslint-config-next": "^13.1.1",
|
|
14
|
+
"eslint-config-prettier": "^8.6.0",
|
|
15
|
+
"eslint-plugin-typescript-sort-keys": "^2.1.0",
|
|
15
16
|
"prettier": "^2.8.1",
|
|
16
17
|
"typescript": "^4.9.4"
|
|
17
18
|
},
|
|
18
19
|
"homepage": "https://github.com/dolmios/eslint-config-dolmios#readme",
|
|
19
20
|
"keywords": [
|
|
20
21
|
"eslint",
|
|
21
|
-
"
|
|
22
|
+
"config",
|
|
22
23
|
"linting",
|
|
23
|
-
"typescript"
|
|
24
|
+
"typescript",
|
|
25
|
+
"prettier"
|
|
24
26
|
],
|
|
25
27
|
"license": "MIT",
|
|
26
28
|
"main": "index.js",
|
|
29
|
+
"prettier": "./configs/prettier.json",
|
|
27
30
|
"repository": {
|
|
28
31
|
"type": "git",
|
|
29
32
|
"url": "git+https://github.com/dolmios/eslint-config-dolmios.git"
|
|
30
33
|
},
|
|
31
|
-
"prettier": "./configs/prettier.json",
|
|
32
34
|
"scripts": {
|
|
33
35
|
"lint": "eslint --ext .js",
|
|
34
|
-
"prettier": "prettier --write ."
|
|
36
|
+
"prettier": "prettier --write .",
|
|
37
|
+
"print": "eslint --print-config index.js",
|
|
38
|
+
"print:file": "pnpm print > reference.txt",
|
|
39
|
+
"tidy": "pnpm lint && pnpm prettier"
|
|
35
40
|
}
|
|
36
41
|
}
|
package/reference.txt
ADDED
|
@@ -0,0 +1,1012 @@
|
|
|
1
|
+
|
|
2
|
+
> eslint-config-dolmios@1.3.7 print /Users/dolmios/Github/eslint-config-dolmios
|
|
3
|
+
> eslint --print-config index.js
|
|
4
|
+
|
|
5
|
+
{
|
|
6
|
+
"env": {
|
|
7
|
+
"browser": true,
|
|
8
|
+
"node": true
|
|
9
|
+
},
|
|
10
|
+
"globals": {},
|
|
11
|
+
"parser": "/Users/dolmios/Github/eslint-config-dolmios/node_modules/.pnpm/@typescript-eslint+parser@5.47.1_iukboom6ndih5an6iafl45j2fe/node_modules/@typescript-eslint/parser/dist/index.js",
|
|
12
|
+
"parserOptions": {
|
|
13
|
+
"sourceType": "module",
|
|
14
|
+
"requireConfigFile": false,
|
|
15
|
+
"allowImportExportEverywhere": true,
|
|
16
|
+
"babelOptions": {
|
|
17
|
+
"presets": [
|
|
18
|
+
"next/babel"
|
|
19
|
+
],
|
|
20
|
+
"caller": {
|
|
21
|
+
"supportsTopLevelAwait": true
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"ecmaFeatures": {
|
|
25
|
+
"jsx": true
|
|
26
|
+
},
|
|
27
|
+
"ecmaVersion": 2018
|
|
28
|
+
},
|
|
29
|
+
"plugins": [
|
|
30
|
+
"react-hooks",
|
|
31
|
+
"jsx-a11y",
|
|
32
|
+
"react",
|
|
33
|
+
"import",
|
|
34
|
+
"@next/next",
|
|
35
|
+
"@typescript-eslint",
|
|
36
|
+
"typescript-sort-keys"
|
|
37
|
+
],
|
|
38
|
+
"rules": {
|
|
39
|
+
"@next/next/no-html-link-for-pages": [
|
|
40
|
+
"off"
|
|
41
|
+
],
|
|
42
|
+
"typescript-sort-keys/interface": [
|
|
43
|
+
"error"
|
|
44
|
+
],
|
|
45
|
+
"typescript-sort-keys/string-enum": [
|
|
46
|
+
"error"
|
|
47
|
+
],
|
|
48
|
+
"@typescript-eslint/explicit-function-return-type": [
|
|
49
|
+
"warn"
|
|
50
|
+
],
|
|
51
|
+
"@typescript-eslint/no-non-null-assertion": [
|
|
52
|
+
"error"
|
|
53
|
+
],
|
|
54
|
+
"jsx-a11y/aria-role": [
|
|
55
|
+
"warn"
|
|
56
|
+
],
|
|
57
|
+
"jsx-a11y/autocomplete-valid": [
|
|
58
|
+
"warn"
|
|
59
|
+
],
|
|
60
|
+
"jsx-a11y/click-events-have-key-events": [
|
|
61
|
+
"warn"
|
|
62
|
+
],
|
|
63
|
+
"jsx-a11y/heading-has-content": [
|
|
64
|
+
"warn"
|
|
65
|
+
],
|
|
66
|
+
"jsx-a11y/iframe-has-title": [
|
|
67
|
+
"warn"
|
|
68
|
+
],
|
|
69
|
+
"jsx-a11y/html-has-lang": [
|
|
70
|
+
"warn"
|
|
71
|
+
],
|
|
72
|
+
"jsx-a11y/img-redundant-alt": [
|
|
73
|
+
"warn"
|
|
74
|
+
],
|
|
75
|
+
"jsx-a11y/interactive-supports-focus": [
|
|
76
|
+
"warn"
|
|
77
|
+
],
|
|
78
|
+
"jsx-a11y/label-has-associated-control": [
|
|
79
|
+
"warn"
|
|
80
|
+
],
|
|
81
|
+
"jsx-a11y/lang": [
|
|
82
|
+
"warn"
|
|
83
|
+
],
|
|
84
|
+
"jsx-a11y/media-has-caption": [
|
|
85
|
+
"warn"
|
|
86
|
+
],
|
|
87
|
+
"jsx-a11y/mouse-events-have-key-events": [
|
|
88
|
+
"warn"
|
|
89
|
+
],
|
|
90
|
+
"jsx-a11y/no-access-key": [
|
|
91
|
+
"warn"
|
|
92
|
+
],
|
|
93
|
+
"jsx-a11y/no-autofocus": [
|
|
94
|
+
"warn"
|
|
95
|
+
],
|
|
96
|
+
"jsx-a11y/no-distracting-elements": [
|
|
97
|
+
"warn"
|
|
98
|
+
],
|
|
99
|
+
"jsx-a11y/no-redundant-roles": [
|
|
100
|
+
"warn"
|
|
101
|
+
],
|
|
102
|
+
"jsx-a11y/no-static-element-interactions": [
|
|
103
|
+
"warn"
|
|
104
|
+
],
|
|
105
|
+
"jsx-a11y/scope": [
|
|
106
|
+
"warn"
|
|
107
|
+
],
|
|
108
|
+
"import/first": [
|
|
109
|
+
"warn"
|
|
110
|
+
],
|
|
111
|
+
"import/order": [
|
|
112
|
+
"error",
|
|
113
|
+
{
|
|
114
|
+
"alphabetize": {
|
|
115
|
+
"caseInsensitive": true,
|
|
116
|
+
"order": "asc"
|
|
117
|
+
},
|
|
118
|
+
"groups": [
|
|
119
|
+
"builtin",
|
|
120
|
+
"external",
|
|
121
|
+
"parent",
|
|
122
|
+
"sibling",
|
|
123
|
+
"index"
|
|
124
|
+
],
|
|
125
|
+
"newlines-between": "always",
|
|
126
|
+
"warnOnUnassignedImports": false
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"no-alert": [
|
|
130
|
+
"warn"
|
|
131
|
+
],
|
|
132
|
+
"no-console": [
|
|
133
|
+
"warn"
|
|
134
|
+
],
|
|
135
|
+
"no-empty": [
|
|
136
|
+
"warn"
|
|
137
|
+
],
|
|
138
|
+
"no-duplicate-imports": [
|
|
139
|
+
"warn"
|
|
140
|
+
],
|
|
141
|
+
"no-eq-null": [
|
|
142
|
+
"warn"
|
|
143
|
+
],
|
|
144
|
+
"no-eval": [
|
|
145
|
+
"warn"
|
|
146
|
+
],
|
|
147
|
+
"no-extra-bind": [
|
|
148
|
+
"warn"
|
|
149
|
+
],
|
|
150
|
+
"no-extra-label": [
|
|
151
|
+
"warn"
|
|
152
|
+
],
|
|
153
|
+
"no-invalid-this": [
|
|
154
|
+
"warn"
|
|
155
|
+
],
|
|
156
|
+
"no-iterator": [
|
|
157
|
+
"warn"
|
|
158
|
+
],
|
|
159
|
+
"no-label-var": [
|
|
160
|
+
"warn"
|
|
161
|
+
],
|
|
162
|
+
"no-labels": [
|
|
163
|
+
"warn"
|
|
164
|
+
],
|
|
165
|
+
"no-lone-blocks": [
|
|
166
|
+
"warn"
|
|
167
|
+
],
|
|
168
|
+
"no-multi-str": [
|
|
169
|
+
"warn"
|
|
170
|
+
],
|
|
171
|
+
"no-new": [
|
|
172
|
+
"warn"
|
|
173
|
+
],
|
|
174
|
+
"no-octal-escape": [
|
|
175
|
+
"warn"
|
|
176
|
+
],
|
|
177
|
+
"no-proto": [
|
|
178
|
+
"warn"
|
|
179
|
+
],
|
|
180
|
+
"no-template-curly-in-string": [
|
|
181
|
+
"warn"
|
|
182
|
+
],
|
|
183
|
+
"no-unreachable-loop": [
|
|
184
|
+
"error"
|
|
185
|
+
],
|
|
186
|
+
"no-unused-expressions": [
|
|
187
|
+
"warn"
|
|
188
|
+
],
|
|
189
|
+
"no-useless-call": [
|
|
190
|
+
"warn"
|
|
191
|
+
],
|
|
192
|
+
"no-useless-concat": [
|
|
193
|
+
"warn"
|
|
194
|
+
],
|
|
195
|
+
"no-useless-escape": [
|
|
196
|
+
"warn"
|
|
197
|
+
],
|
|
198
|
+
"no-useless-return": [
|
|
199
|
+
"warn"
|
|
200
|
+
],
|
|
201
|
+
"no-use-before-define": [
|
|
202
|
+
"warn"
|
|
203
|
+
],
|
|
204
|
+
"yoda": [
|
|
205
|
+
"warn"
|
|
206
|
+
],
|
|
207
|
+
"curly": [
|
|
208
|
+
0
|
|
209
|
+
],
|
|
210
|
+
"lines-around-comment": [
|
|
211
|
+
0
|
|
212
|
+
],
|
|
213
|
+
"max-len": [
|
|
214
|
+
0
|
|
215
|
+
],
|
|
216
|
+
"no-confusing-arrow": [
|
|
217
|
+
0
|
|
218
|
+
],
|
|
219
|
+
"no-mixed-operators": [
|
|
220
|
+
0
|
|
221
|
+
],
|
|
222
|
+
"no-tabs": [
|
|
223
|
+
0
|
|
224
|
+
],
|
|
225
|
+
"no-unexpected-multiline": [
|
|
226
|
+
0
|
|
227
|
+
],
|
|
228
|
+
"quotes": [
|
|
229
|
+
0
|
|
230
|
+
],
|
|
231
|
+
"@typescript-eslint/quotes": [
|
|
232
|
+
0
|
|
233
|
+
],
|
|
234
|
+
"babel/quotes": [
|
|
235
|
+
0
|
|
236
|
+
],
|
|
237
|
+
"vue/html-self-closing": [
|
|
238
|
+
0
|
|
239
|
+
],
|
|
240
|
+
"vue/max-len": [
|
|
241
|
+
0
|
|
242
|
+
],
|
|
243
|
+
"array-bracket-newline": [
|
|
244
|
+
"off"
|
|
245
|
+
],
|
|
246
|
+
"array-bracket-spacing": [
|
|
247
|
+
"off"
|
|
248
|
+
],
|
|
249
|
+
"array-element-newline": [
|
|
250
|
+
"off"
|
|
251
|
+
],
|
|
252
|
+
"arrow-parens": [
|
|
253
|
+
"off"
|
|
254
|
+
],
|
|
255
|
+
"arrow-spacing": [
|
|
256
|
+
"off"
|
|
257
|
+
],
|
|
258
|
+
"block-spacing": [
|
|
259
|
+
"off"
|
|
260
|
+
],
|
|
261
|
+
"brace-style": [
|
|
262
|
+
"off"
|
|
263
|
+
],
|
|
264
|
+
"comma-dangle": [
|
|
265
|
+
"off"
|
|
266
|
+
],
|
|
267
|
+
"comma-spacing": [
|
|
268
|
+
"off"
|
|
269
|
+
],
|
|
270
|
+
"comma-style": [
|
|
271
|
+
"off"
|
|
272
|
+
],
|
|
273
|
+
"computed-property-spacing": [
|
|
274
|
+
"off"
|
|
275
|
+
],
|
|
276
|
+
"dot-location": [
|
|
277
|
+
"off"
|
|
278
|
+
],
|
|
279
|
+
"eol-last": [
|
|
280
|
+
"off"
|
|
281
|
+
],
|
|
282
|
+
"func-call-spacing": [
|
|
283
|
+
"off"
|
|
284
|
+
],
|
|
285
|
+
"function-call-argument-newline": [
|
|
286
|
+
"off"
|
|
287
|
+
],
|
|
288
|
+
"function-paren-newline": [
|
|
289
|
+
"off"
|
|
290
|
+
],
|
|
291
|
+
"generator-star": [
|
|
292
|
+
"off"
|
|
293
|
+
],
|
|
294
|
+
"generator-star-spacing": [
|
|
295
|
+
"off"
|
|
296
|
+
],
|
|
297
|
+
"implicit-arrow-linebreak": [
|
|
298
|
+
"off"
|
|
299
|
+
],
|
|
300
|
+
"indent": [
|
|
301
|
+
"off"
|
|
302
|
+
],
|
|
303
|
+
"jsx-quotes": [
|
|
304
|
+
"off"
|
|
305
|
+
],
|
|
306
|
+
"key-spacing": [
|
|
307
|
+
"off"
|
|
308
|
+
],
|
|
309
|
+
"keyword-spacing": [
|
|
310
|
+
"off"
|
|
311
|
+
],
|
|
312
|
+
"linebreak-style": [
|
|
313
|
+
"off"
|
|
314
|
+
],
|
|
315
|
+
"multiline-ternary": [
|
|
316
|
+
"off"
|
|
317
|
+
],
|
|
318
|
+
"newline-per-chained-call": [
|
|
319
|
+
"off"
|
|
320
|
+
],
|
|
321
|
+
"new-parens": [
|
|
322
|
+
"off"
|
|
323
|
+
],
|
|
324
|
+
"no-arrow-condition": [
|
|
325
|
+
"off"
|
|
326
|
+
],
|
|
327
|
+
"no-comma-dangle": [
|
|
328
|
+
"off"
|
|
329
|
+
],
|
|
330
|
+
"no-extra-parens": [
|
|
331
|
+
"off"
|
|
332
|
+
],
|
|
333
|
+
"no-extra-semi": [
|
|
334
|
+
"off"
|
|
335
|
+
],
|
|
336
|
+
"no-floating-decimal": [
|
|
337
|
+
"off"
|
|
338
|
+
],
|
|
339
|
+
"no-mixed-spaces-and-tabs": [
|
|
340
|
+
"off"
|
|
341
|
+
],
|
|
342
|
+
"no-multi-spaces": [
|
|
343
|
+
"off"
|
|
344
|
+
],
|
|
345
|
+
"no-multiple-empty-lines": [
|
|
346
|
+
"off"
|
|
347
|
+
],
|
|
348
|
+
"no-reserved-keys": [
|
|
349
|
+
"off"
|
|
350
|
+
],
|
|
351
|
+
"no-space-before-semi": [
|
|
352
|
+
"off"
|
|
353
|
+
],
|
|
354
|
+
"no-trailing-spaces": [
|
|
355
|
+
"off"
|
|
356
|
+
],
|
|
357
|
+
"no-whitespace-before-property": [
|
|
358
|
+
"off"
|
|
359
|
+
],
|
|
360
|
+
"no-wrap-func": [
|
|
361
|
+
"off"
|
|
362
|
+
],
|
|
363
|
+
"nonblock-statement-body-position": [
|
|
364
|
+
"off"
|
|
365
|
+
],
|
|
366
|
+
"object-curly-newline": [
|
|
367
|
+
"off"
|
|
368
|
+
],
|
|
369
|
+
"object-curly-spacing": [
|
|
370
|
+
"off"
|
|
371
|
+
],
|
|
372
|
+
"object-property-newline": [
|
|
373
|
+
"off"
|
|
374
|
+
],
|
|
375
|
+
"one-var-declaration-per-line": [
|
|
376
|
+
"off"
|
|
377
|
+
],
|
|
378
|
+
"operator-linebreak": [
|
|
379
|
+
"off"
|
|
380
|
+
],
|
|
381
|
+
"padded-blocks": [
|
|
382
|
+
"off"
|
|
383
|
+
],
|
|
384
|
+
"quote-props": [
|
|
385
|
+
"off"
|
|
386
|
+
],
|
|
387
|
+
"rest-spread-spacing": [
|
|
388
|
+
"off"
|
|
389
|
+
],
|
|
390
|
+
"semi": [
|
|
391
|
+
"off"
|
|
392
|
+
],
|
|
393
|
+
"semi-spacing": [
|
|
394
|
+
"off"
|
|
395
|
+
],
|
|
396
|
+
"semi-style": [
|
|
397
|
+
"off"
|
|
398
|
+
],
|
|
399
|
+
"space-after-function-name": [
|
|
400
|
+
"off"
|
|
401
|
+
],
|
|
402
|
+
"space-after-keywords": [
|
|
403
|
+
"off"
|
|
404
|
+
],
|
|
405
|
+
"space-before-blocks": [
|
|
406
|
+
"off"
|
|
407
|
+
],
|
|
408
|
+
"space-before-function-paren": [
|
|
409
|
+
"off"
|
|
410
|
+
],
|
|
411
|
+
"space-before-function-parentheses": [
|
|
412
|
+
"off"
|
|
413
|
+
],
|
|
414
|
+
"space-before-keywords": [
|
|
415
|
+
"off"
|
|
416
|
+
],
|
|
417
|
+
"space-in-brackets": [
|
|
418
|
+
"off"
|
|
419
|
+
],
|
|
420
|
+
"space-in-parens": [
|
|
421
|
+
"off"
|
|
422
|
+
],
|
|
423
|
+
"space-infix-ops": [
|
|
424
|
+
"off"
|
|
425
|
+
],
|
|
426
|
+
"space-return-throw-case": [
|
|
427
|
+
"off"
|
|
428
|
+
],
|
|
429
|
+
"space-unary-ops": [
|
|
430
|
+
"off"
|
|
431
|
+
],
|
|
432
|
+
"space-unary-word-ops": [
|
|
433
|
+
"off"
|
|
434
|
+
],
|
|
435
|
+
"switch-colon-spacing": [
|
|
436
|
+
"off"
|
|
437
|
+
],
|
|
438
|
+
"template-curly-spacing": [
|
|
439
|
+
"off"
|
|
440
|
+
],
|
|
441
|
+
"template-tag-spacing": [
|
|
442
|
+
"off"
|
|
443
|
+
],
|
|
444
|
+
"unicode-bom": [
|
|
445
|
+
"off"
|
|
446
|
+
],
|
|
447
|
+
"wrap-iife": [
|
|
448
|
+
"off"
|
|
449
|
+
],
|
|
450
|
+
"wrap-regex": [
|
|
451
|
+
"off"
|
|
452
|
+
],
|
|
453
|
+
"yield-star-spacing": [
|
|
454
|
+
"off"
|
|
455
|
+
],
|
|
456
|
+
"@babel/object-curly-spacing": [
|
|
457
|
+
"off"
|
|
458
|
+
],
|
|
459
|
+
"@babel/semi": [
|
|
460
|
+
"off"
|
|
461
|
+
],
|
|
462
|
+
"@typescript-eslint/brace-style": [
|
|
463
|
+
"off"
|
|
464
|
+
],
|
|
465
|
+
"@typescript-eslint/comma-dangle": [
|
|
466
|
+
"off"
|
|
467
|
+
],
|
|
468
|
+
"@typescript-eslint/comma-spacing": [
|
|
469
|
+
"off"
|
|
470
|
+
],
|
|
471
|
+
"@typescript-eslint/func-call-spacing": [
|
|
472
|
+
"off"
|
|
473
|
+
],
|
|
474
|
+
"@typescript-eslint/indent": [
|
|
475
|
+
"off"
|
|
476
|
+
],
|
|
477
|
+
"@typescript-eslint/keyword-spacing": [
|
|
478
|
+
"off"
|
|
479
|
+
],
|
|
480
|
+
"@typescript-eslint/member-delimiter-style": [
|
|
481
|
+
"off"
|
|
482
|
+
],
|
|
483
|
+
"@typescript-eslint/no-extra-parens": [
|
|
484
|
+
"off"
|
|
485
|
+
],
|
|
486
|
+
"@typescript-eslint/no-extra-semi": [
|
|
487
|
+
"off"
|
|
488
|
+
],
|
|
489
|
+
"@typescript-eslint/object-curly-spacing": [
|
|
490
|
+
"off"
|
|
491
|
+
],
|
|
492
|
+
"@typescript-eslint/semi": [
|
|
493
|
+
"off"
|
|
494
|
+
],
|
|
495
|
+
"@typescript-eslint/space-before-blocks": [
|
|
496
|
+
"off"
|
|
497
|
+
],
|
|
498
|
+
"@typescript-eslint/space-before-function-paren": [
|
|
499
|
+
"off"
|
|
500
|
+
],
|
|
501
|
+
"@typescript-eslint/space-infix-ops": [
|
|
502
|
+
"off"
|
|
503
|
+
],
|
|
504
|
+
"@typescript-eslint/type-annotation-spacing": [
|
|
505
|
+
"off"
|
|
506
|
+
],
|
|
507
|
+
"babel/object-curly-spacing": [
|
|
508
|
+
"off"
|
|
509
|
+
],
|
|
510
|
+
"babel/semi": [
|
|
511
|
+
"off"
|
|
512
|
+
],
|
|
513
|
+
"flowtype/boolean-style": [
|
|
514
|
+
"off"
|
|
515
|
+
],
|
|
516
|
+
"flowtype/delimiter-dangle": [
|
|
517
|
+
"off"
|
|
518
|
+
],
|
|
519
|
+
"flowtype/generic-spacing": [
|
|
520
|
+
"off"
|
|
521
|
+
],
|
|
522
|
+
"flowtype/object-type-curly-spacing": [
|
|
523
|
+
"off"
|
|
524
|
+
],
|
|
525
|
+
"flowtype/object-type-delimiter": [
|
|
526
|
+
"off"
|
|
527
|
+
],
|
|
528
|
+
"flowtype/quotes": [
|
|
529
|
+
"off"
|
|
530
|
+
],
|
|
531
|
+
"flowtype/semi": [
|
|
532
|
+
"off"
|
|
533
|
+
],
|
|
534
|
+
"flowtype/space-after-type-colon": [
|
|
535
|
+
"off"
|
|
536
|
+
],
|
|
537
|
+
"flowtype/space-before-generic-bracket": [
|
|
538
|
+
"off"
|
|
539
|
+
],
|
|
540
|
+
"flowtype/space-before-type-colon": [
|
|
541
|
+
"off"
|
|
542
|
+
],
|
|
543
|
+
"flowtype/union-intersection-spacing": [
|
|
544
|
+
"off"
|
|
545
|
+
],
|
|
546
|
+
"react/jsx-child-element-spacing": [
|
|
547
|
+
"off"
|
|
548
|
+
],
|
|
549
|
+
"react/jsx-closing-bracket-location": [
|
|
550
|
+
"off"
|
|
551
|
+
],
|
|
552
|
+
"react/jsx-closing-tag-location": [
|
|
553
|
+
"off"
|
|
554
|
+
],
|
|
555
|
+
"react/jsx-curly-newline": [
|
|
556
|
+
"off"
|
|
557
|
+
],
|
|
558
|
+
"react/jsx-curly-spacing": [
|
|
559
|
+
"off"
|
|
560
|
+
],
|
|
561
|
+
"react/jsx-equals-spacing": [
|
|
562
|
+
"off"
|
|
563
|
+
],
|
|
564
|
+
"react/jsx-first-prop-new-line": [
|
|
565
|
+
"off"
|
|
566
|
+
],
|
|
567
|
+
"react/jsx-indent": [
|
|
568
|
+
"off"
|
|
569
|
+
],
|
|
570
|
+
"react/jsx-indent-props": [
|
|
571
|
+
"off"
|
|
572
|
+
],
|
|
573
|
+
"react/jsx-max-props-per-line": [
|
|
574
|
+
"off"
|
|
575
|
+
],
|
|
576
|
+
"react/jsx-newline": [
|
|
577
|
+
"off"
|
|
578
|
+
],
|
|
579
|
+
"react/jsx-one-expression-per-line": [
|
|
580
|
+
"off"
|
|
581
|
+
],
|
|
582
|
+
"react/jsx-props-no-multi-spaces": [
|
|
583
|
+
"off"
|
|
584
|
+
],
|
|
585
|
+
"react/jsx-tag-spacing": [
|
|
586
|
+
"off"
|
|
587
|
+
],
|
|
588
|
+
"react/jsx-wrap-multilines": [
|
|
589
|
+
"off"
|
|
590
|
+
],
|
|
591
|
+
"standard/array-bracket-even-spacing": [
|
|
592
|
+
"off"
|
|
593
|
+
],
|
|
594
|
+
"standard/computed-property-even-spacing": [
|
|
595
|
+
"off"
|
|
596
|
+
],
|
|
597
|
+
"standard/object-curly-even-spacing": [
|
|
598
|
+
"off"
|
|
599
|
+
],
|
|
600
|
+
"unicorn/empty-brace-spaces": [
|
|
601
|
+
"off"
|
|
602
|
+
],
|
|
603
|
+
"unicorn/no-nested-ternary": [
|
|
604
|
+
"off"
|
|
605
|
+
],
|
|
606
|
+
"unicorn/number-literal-case": [
|
|
607
|
+
"off"
|
|
608
|
+
],
|
|
609
|
+
"vue/array-bracket-newline": [
|
|
610
|
+
"off"
|
|
611
|
+
],
|
|
612
|
+
"vue/array-bracket-spacing": [
|
|
613
|
+
"off"
|
|
614
|
+
],
|
|
615
|
+
"vue/arrow-spacing": [
|
|
616
|
+
"off"
|
|
617
|
+
],
|
|
618
|
+
"vue/block-spacing": [
|
|
619
|
+
"off"
|
|
620
|
+
],
|
|
621
|
+
"vue/block-tag-newline": [
|
|
622
|
+
"off"
|
|
623
|
+
],
|
|
624
|
+
"vue/brace-style": [
|
|
625
|
+
"off"
|
|
626
|
+
],
|
|
627
|
+
"vue/comma-dangle": [
|
|
628
|
+
"off"
|
|
629
|
+
],
|
|
630
|
+
"vue/comma-spacing": [
|
|
631
|
+
"off"
|
|
632
|
+
],
|
|
633
|
+
"vue/comma-style": [
|
|
634
|
+
"off"
|
|
635
|
+
],
|
|
636
|
+
"vue/dot-location": [
|
|
637
|
+
"off"
|
|
638
|
+
],
|
|
639
|
+
"vue/func-call-spacing": [
|
|
640
|
+
"off"
|
|
641
|
+
],
|
|
642
|
+
"vue/html-closing-bracket-newline": [
|
|
643
|
+
"off"
|
|
644
|
+
],
|
|
645
|
+
"vue/html-closing-bracket-spacing": [
|
|
646
|
+
"off"
|
|
647
|
+
],
|
|
648
|
+
"vue/html-end-tags": [
|
|
649
|
+
"off"
|
|
650
|
+
],
|
|
651
|
+
"vue/html-indent": [
|
|
652
|
+
"off"
|
|
653
|
+
],
|
|
654
|
+
"vue/html-quotes": [
|
|
655
|
+
"off"
|
|
656
|
+
],
|
|
657
|
+
"vue/key-spacing": [
|
|
658
|
+
"off"
|
|
659
|
+
],
|
|
660
|
+
"vue/keyword-spacing": [
|
|
661
|
+
"off"
|
|
662
|
+
],
|
|
663
|
+
"vue/max-attributes-per-line": [
|
|
664
|
+
"off"
|
|
665
|
+
],
|
|
666
|
+
"vue/multiline-html-element-content-newline": [
|
|
667
|
+
"off"
|
|
668
|
+
],
|
|
669
|
+
"vue/multiline-ternary": [
|
|
670
|
+
"off"
|
|
671
|
+
],
|
|
672
|
+
"vue/mustache-interpolation-spacing": [
|
|
673
|
+
"off"
|
|
674
|
+
],
|
|
675
|
+
"vue/no-extra-parens": [
|
|
676
|
+
"off"
|
|
677
|
+
],
|
|
678
|
+
"vue/no-multi-spaces": [
|
|
679
|
+
"off"
|
|
680
|
+
],
|
|
681
|
+
"vue/no-spaces-around-equal-signs-in-attribute": [
|
|
682
|
+
"off"
|
|
683
|
+
],
|
|
684
|
+
"vue/object-curly-newline": [
|
|
685
|
+
"off"
|
|
686
|
+
],
|
|
687
|
+
"vue/object-curly-spacing": [
|
|
688
|
+
"off"
|
|
689
|
+
],
|
|
690
|
+
"vue/object-property-newline": [
|
|
691
|
+
"off"
|
|
692
|
+
],
|
|
693
|
+
"vue/operator-linebreak": [
|
|
694
|
+
"off"
|
|
695
|
+
],
|
|
696
|
+
"vue/quote-props": [
|
|
697
|
+
"off"
|
|
698
|
+
],
|
|
699
|
+
"vue/script-indent": [
|
|
700
|
+
"off"
|
|
701
|
+
],
|
|
702
|
+
"vue/singleline-html-element-content-newline": [
|
|
703
|
+
"off"
|
|
704
|
+
],
|
|
705
|
+
"vue/space-in-parens": [
|
|
706
|
+
"off"
|
|
707
|
+
],
|
|
708
|
+
"vue/space-infix-ops": [
|
|
709
|
+
"off"
|
|
710
|
+
],
|
|
711
|
+
"vue/space-unary-ops": [
|
|
712
|
+
"off"
|
|
713
|
+
],
|
|
714
|
+
"vue/template-curly-spacing": [
|
|
715
|
+
"off"
|
|
716
|
+
],
|
|
717
|
+
"indent-legacy": [
|
|
718
|
+
"off"
|
|
719
|
+
],
|
|
720
|
+
"no-spaced-func": [
|
|
721
|
+
"off"
|
|
722
|
+
],
|
|
723
|
+
"react/jsx-space-before-closing": [
|
|
724
|
+
"off"
|
|
725
|
+
],
|
|
726
|
+
"@typescript-eslint/adjacent-overload-signatures": [
|
|
727
|
+
"error"
|
|
728
|
+
],
|
|
729
|
+
"@typescript-eslint/ban-ts-comment": [
|
|
730
|
+
"error"
|
|
731
|
+
],
|
|
732
|
+
"@typescript-eslint/ban-types": [
|
|
733
|
+
"error"
|
|
734
|
+
],
|
|
735
|
+
"no-array-constructor": [
|
|
736
|
+
"off"
|
|
737
|
+
],
|
|
738
|
+
"@typescript-eslint/no-array-constructor": [
|
|
739
|
+
"error"
|
|
740
|
+
],
|
|
741
|
+
"no-empty-function": [
|
|
742
|
+
"off"
|
|
743
|
+
],
|
|
744
|
+
"@typescript-eslint/no-empty-function": [
|
|
745
|
+
"error"
|
|
746
|
+
],
|
|
747
|
+
"@typescript-eslint/no-empty-interface": [
|
|
748
|
+
"error"
|
|
749
|
+
],
|
|
750
|
+
"@typescript-eslint/no-explicit-any": [
|
|
751
|
+
"warn"
|
|
752
|
+
],
|
|
753
|
+
"@typescript-eslint/no-extra-non-null-assertion": [
|
|
754
|
+
"error"
|
|
755
|
+
],
|
|
756
|
+
"@typescript-eslint/no-inferrable-types": [
|
|
757
|
+
"error"
|
|
758
|
+
],
|
|
759
|
+
"no-loss-of-precision": [
|
|
760
|
+
"off"
|
|
761
|
+
],
|
|
762
|
+
"@typescript-eslint/no-loss-of-precision": [
|
|
763
|
+
"error"
|
|
764
|
+
],
|
|
765
|
+
"@typescript-eslint/no-misused-new": [
|
|
766
|
+
"error"
|
|
767
|
+
],
|
|
768
|
+
"@typescript-eslint/no-namespace": [
|
|
769
|
+
"error"
|
|
770
|
+
],
|
|
771
|
+
"@typescript-eslint/no-non-null-asserted-optional-chain": [
|
|
772
|
+
"error"
|
|
773
|
+
],
|
|
774
|
+
"@typescript-eslint/no-this-alias": [
|
|
775
|
+
"error"
|
|
776
|
+
],
|
|
777
|
+
"@typescript-eslint/no-unnecessary-type-constraint": [
|
|
778
|
+
"error"
|
|
779
|
+
],
|
|
780
|
+
"no-unused-vars": [
|
|
781
|
+
"off"
|
|
782
|
+
],
|
|
783
|
+
"@typescript-eslint/no-unused-vars": [
|
|
784
|
+
"warn"
|
|
785
|
+
],
|
|
786
|
+
"@typescript-eslint/no-var-requires": [
|
|
787
|
+
"error"
|
|
788
|
+
],
|
|
789
|
+
"@typescript-eslint/prefer-as-const": [
|
|
790
|
+
"error"
|
|
791
|
+
],
|
|
792
|
+
"@typescript-eslint/prefer-namespace-keyword": [
|
|
793
|
+
"error"
|
|
794
|
+
],
|
|
795
|
+
"@typescript-eslint/triple-slash-reference": [
|
|
796
|
+
"error"
|
|
797
|
+
],
|
|
798
|
+
"@next/next/no-sync-scripts": [
|
|
799
|
+
"error"
|
|
800
|
+
],
|
|
801
|
+
"@next/next/google-font-display": [
|
|
802
|
+
"warn"
|
|
803
|
+
],
|
|
804
|
+
"@next/next/google-font-preconnect": [
|
|
805
|
+
"warn"
|
|
806
|
+
],
|
|
807
|
+
"@next/next/next-script-for-ga": [
|
|
808
|
+
"warn"
|
|
809
|
+
],
|
|
810
|
+
"@next/next/no-before-interactive-script-outside-document": [
|
|
811
|
+
"warn"
|
|
812
|
+
],
|
|
813
|
+
"@next/next/no-css-tags": [
|
|
814
|
+
"warn"
|
|
815
|
+
],
|
|
816
|
+
"@next/next/no-head-element": [
|
|
817
|
+
"warn"
|
|
818
|
+
],
|
|
819
|
+
"@next/next/no-img-element": [
|
|
820
|
+
"warn"
|
|
821
|
+
],
|
|
822
|
+
"@next/next/no-page-custom-font": [
|
|
823
|
+
"warn"
|
|
824
|
+
],
|
|
825
|
+
"@next/next/no-styled-jsx-in-document": [
|
|
826
|
+
"warn"
|
|
827
|
+
],
|
|
828
|
+
"@next/next/no-title-in-document-head": [
|
|
829
|
+
"warn"
|
|
830
|
+
],
|
|
831
|
+
"@next/next/no-typos": [
|
|
832
|
+
"warn"
|
|
833
|
+
],
|
|
834
|
+
"@next/next/no-unwanted-polyfillio": [
|
|
835
|
+
"warn"
|
|
836
|
+
],
|
|
837
|
+
"@next/next/inline-script-id": [
|
|
838
|
+
"error"
|
|
839
|
+
],
|
|
840
|
+
"@next/next/no-assign-module-variable": [
|
|
841
|
+
"error"
|
|
842
|
+
],
|
|
843
|
+
"@next/next/no-document-import-in-page": [
|
|
844
|
+
"error"
|
|
845
|
+
],
|
|
846
|
+
"@next/next/no-duplicate-head": [
|
|
847
|
+
"error"
|
|
848
|
+
],
|
|
849
|
+
"@next/next/no-head-import-in-document": [
|
|
850
|
+
"error"
|
|
851
|
+
],
|
|
852
|
+
"@next/next/no-script-component-in-head": [
|
|
853
|
+
"error"
|
|
854
|
+
],
|
|
855
|
+
"import/no-anonymous-default-export": [
|
|
856
|
+
"warn"
|
|
857
|
+
],
|
|
858
|
+
"react/no-unknown-property": [
|
|
859
|
+
"off"
|
|
860
|
+
],
|
|
861
|
+
"react/react-in-jsx-scope": [
|
|
862
|
+
"off"
|
|
863
|
+
],
|
|
864
|
+
"react/prop-types": [
|
|
865
|
+
"off"
|
|
866
|
+
],
|
|
867
|
+
"jsx-a11y/alt-text": [
|
|
868
|
+
"warn",
|
|
869
|
+
{
|
|
870
|
+
"elements": [
|
|
871
|
+
"img"
|
|
872
|
+
],
|
|
873
|
+
"img": [
|
|
874
|
+
"Image"
|
|
875
|
+
]
|
|
876
|
+
}
|
|
877
|
+
],
|
|
878
|
+
"jsx-a11y/aria-props": [
|
|
879
|
+
"warn"
|
|
880
|
+
],
|
|
881
|
+
"jsx-a11y/aria-proptypes": [
|
|
882
|
+
"warn"
|
|
883
|
+
],
|
|
884
|
+
"jsx-a11y/aria-unsupported-elements": [
|
|
885
|
+
"warn"
|
|
886
|
+
],
|
|
887
|
+
"jsx-a11y/role-has-required-aria-props": [
|
|
888
|
+
"warn"
|
|
889
|
+
],
|
|
890
|
+
"jsx-a11y/role-supports-aria-props": [
|
|
891
|
+
"warn"
|
|
892
|
+
],
|
|
893
|
+
"react-hooks/rules-of-hooks": [
|
|
894
|
+
"error"
|
|
895
|
+
],
|
|
896
|
+
"react-hooks/exhaustive-deps": [
|
|
897
|
+
"warn"
|
|
898
|
+
],
|
|
899
|
+
"react/display-name": [
|
|
900
|
+
2
|
|
901
|
+
],
|
|
902
|
+
"react/jsx-key": [
|
|
903
|
+
2
|
|
904
|
+
],
|
|
905
|
+
"react/jsx-no-comment-textnodes": [
|
|
906
|
+
2
|
|
907
|
+
],
|
|
908
|
+
"react/jsx-no-duplicate-props": [
|
|
909
|
+
2
|
|
910
|
+
],
|
|
911
|
+
"react/jsx-no-target-blank": [
|
|
912
|
+
2
|
|
913
|
+
],
|
|
914
|
+
"react/jsx-no-undef": [
|
|
915
|
+
2
|
|
916
|
+
],
|
|
917
|
+
"react/jsx-uses-react": [
|
|
918
|
+
2
|
|
919
|
+
],
|
|
920
|
+
"react/jsx-uses-vars": [
|
|
921
|
+
2
|
|
922
|
+
],
|
|
923
|
+
"react/no-children-prop": [
|
|
924
|
+
2
|
|
925
|
+
],
|
|
926
|
+
"react/no-danger-with-children": [
|
|
927
|
+
2
|
|
928
|
+
],
|
|
929
|
+
"react/no-deprecated": [
|
|
930
|
+
2
|
|
931
|
+
],
|
|
932
|
+
"react/no-direct-mutation-state": [
|
|
933
|
+
2
|
|
934
|
+
],
|
|
935
|
+
"react/no-find-dom-node": [
|
|
936
|
+
2
|
|
937
|
+
],
|
|
938
|
+
"react/no-is-mounted": [
|
|
939
|
+
2
|
|
940
|
+
],
|
|
941
|
+
"react/no-render-return-value": [
|
|
942
|
+
2
|
|
943
|
+
],
|
|
944
|
+
"react/no-string-refs": [
|
|
945
|
+
2
|
|
946
|
+
],
|
|
947
|
+
"react/no-unescaped-entities": [
|
|
948
|
+
2
|
|
949
|
+
],
|
|
950
|
+
"react/no-unsafe": [
|
|
951
|
+
0
|
|
952
|
+
],
|
|
953
|
+
"react/require-render-return": [
|
|
954
|
+
2
|
|
955
|
+
],
|
|
956
|
+
"import/no-unresolved": [
|
|
957
|
+
"error"
|
|
958
|
+
],
|
|
959
|
+
"import/named": [
|
|
960
|
+
"error"
|
|
961
|
+
],
|
|
962
|
+
"import/namespace": [
|
|
963
|
+
"error"
|
|
964
|
+
],
|
|
965
|
+
"import/default": [
|
|
966
|
+
"error"
|
|
967
|
+
],
|
|
968
|
+
"import/export": [
|
|
969
|
+
"error"
|
|
970
|
+
],
|
|
971
|
+
"import/no-named-as-default": [
|
|
972
|
+
"warn"
|
|
973
|
+
],
|
|
974
|
+
"import/no-named-as-default-member": [
|
|
975
|
+
"warn"
|
|
976
|
+
],
|
|
977
|
+
"import/no-duplicates": [
|
|
978
|
+
"warn"
|
|
979
|
+
]
|
|
980
|
+
},
|
|
981
|
+
"settings": {
|
|
982
|
+
"next": {
|
|
983
|
+
"rootDir": "./"
|
|
984
|
+
},
|
|
985
|
+
"react": {
|
|
986
|
+
"version": "detect"
|
|
987
|
+
},
|
|
988
|
+
"import/parsers": {
|
|
989
|
+
"/Users/dolmios/Github/eslint-config-dolmios/node_modules/.pnpm/@typescript-eslint+parser@5.47.1_iukboom6ndih5an6iafl45j2fe/node_modules/@typescript-eslint/parser/dist/index.js": [
|
|
990
|
+
".ts",
|
|
991
|
+
".mts",
|
|
992
|
+
".cts",
|
|
993
|
+
".tsx",
|
|
994
|
+
".d.ts"
|
|
995
|
+
]
|
|
996
|
+
},
|
|
997
|
+
"import/resolver": {
|
|
998
|
+
"/Users/dolmios/Github/eslint-config-dolmios/node_modules/.pnpm/eslint-import-resolver-node@0.3.6/node_modules/eslint-import-resolver-node/index.js": {
|
|
999
|
+
"extensions": [
|
|
1000
|
+
".js",
|
|
1001
|
+
".jsx",
|
|
1002
|
+
".ts",
|
|
1003
|
+
".tsx"
|
|
1004
|
+
]
|
|
1005
|
+
},
|
|
1006
|
+
"/Users/dolmios/Github/eslint-config-dolmios/node_modules/.pnpm/eslint-import-resolver-typescript@3.5.2_ol7jqilc3wemtdbq3nzhywgxq4/node_modules/eslint-import-resolver-typescript/lib/index.cjs": {
|
|
1007
|
+
"alwaysTryTypes": true
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
"ignorePatterns": []
|
|
1012
|
+
}
|