@gooddata/eslint-config 11.55.0-alpha.3 → 11.55.0-alpha.5
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/dist/base.js +4 -9
- package/dist/base.json +4 -4
- package/dist/browser-esm.js +4 -9
- package/dist/browser-esm.json +4 -4
- package/dist/esm-playwright.js +4 -9
- package/dist/esm-playwright.json +4 -4
- package/dist/esm-react-playwright.js +4 -9
- package/dist/esm-react-playwright.json +4 -4
- package/dist/esm-react-storybook.js +4 -9
- package/dist/esm-react-storybook.json +4 -4
- package/dist/esm-react-vitest-rtl.js +4 -9
- package/dist/esm-react-vitest-rtl.json +4 -4
- package/dist/esm-react-vitest.js +4 -9
- package/dist/esm-react-vitest.json +4 -4
- package/dist/esm-react.js +4 -9
- package/dist/esm-react.json +4 -4
- package/dist/esm-vitest-rtl.js +4 -9
- package/dist/esm-vitest-rtl.json +4 -4
- package/dist/esm-vitest.js +4 -9
- package/dist/esm-vitest.json +4 -4
- package/dist/esm.js +4 -9
- package/dist/esm.json +4 -4
- package/dist/oxlint-base.js +0 -7
- package/dist/oxlint-browser-esm.js +0 -7
- package/dist/oxlint-esm-playwright.js +0 -7
- package/dist/oxlint-esm-react-playwright.js +0 -7
- package/dist/oxlint-esm-react-storybook.js +0 -7
- package/dist/oxlint-esm-react-vitest-rtl.js +0 -7
- package/dist/oxlint-esm-react-vitest.js +0 -7
- package/dist/oxlint-esm-react.js +0 -7
- package/dist/oxlint-esm-vitest-rtl.js +0 -7
- package/dist/oxlint-esm-vitest.js +0 -7
- package/dist/oxlint-esm.js +0 -7
- package/dist/oxlint-react-playwright.js +0 -7
- package/dist/oxlint-react-vitest-rtl.js +0 -7
- package/dist/oxlint-react-vitest.js +0 -7
- package/dist/oxlint-react.js +0 -7
- package/dist/react-playwright.js +4 -9
- package/dist/react-playwright.json +4 -4
- package/dist/react-vitest-rtl.js +4 -9
- package/dist/react-vitest-rtl.json +4 -4
- package/dist/react-vitest.js +4 -9
- package/dist/react-vitest.json +4 -4
- package/dist/react.js +4 -9
- package/dist/react.json +4 -4
- package/package.json +3 -3
package/dist/base.js
CHANGED
|
@@ -30,7 +30,6 @@ export default [
|
|
|
30
30
|
"no-constant-condition": "error",
|
|
31
31
|
"no-control-regex": "error",
|
|
32
32
|
"no-debugger": "error",
|
|
33
|
-
"no-delete-var": "error",
|
|
34
33
|
"no-dupe-args": "error",
|
|
35
34
|
"no-dupe-class-members": "error",
|
|
36
35
|
"no-dupe-else-if": "error",
|
|
@@ -624,6 +623,10 @@ export default [
|
|
|
624
623
|
},
|
|
625
624
|
},
|
|
626
625
|
],
|
|
626
|
+
"no-caller": "error",
|
|
627
|
+
"no-eval": "error",
|
|
628
|
+
"no-delete-var": "error",
|
|
629
|
+
"no-octal-escape": "error",
|
|
627
630
|
"no-duplicate-imports": [
|
|
628
631
|
"error",
|
|
629
632
|
{
|
|
@@ -2296,14 +2299,6 @@ export default [
|
|
|
2296
2299
|
"sonarjs/no-identical-functions": "off",
|
|
2297
2300
|
},
|
|
2298
2301
|
},
|
|
2299
|
-
{
|
|
2300
|
-
rules: {
|
|
2301
|
-
"no-caller": 2,
|
|
2302
|
-
"no-eval": 2,
|
|
2303
|
-
"no-delete-var": 2,
|
|
2304
|
-
"no-octal-escape": 2,
|
|
2305
|
-
},
|
|
2306
|
-
},
|
|
2307
2302
|
{
|
|
2308
2303
|
ignores: [
|
|
2309
2304
|
"**/dist/**/*.*",
|
package/dist/base.json
CHANGED
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"no-constant-condition": "error",
|
|
20
20
|
"no-control-regex": "error",
|
|
21
21
|
"no-debugger": "error",
|
|
22
|
-
"no-delete-var": 2,
|
|
23
22
|
"no-dupe-args": "error",
|
|
24
23
|
"no-dupe-class-members": "error",
|
|
25
24
|
"no-dupe-else-if": "error",
|
|
@@ -613,6 +612,10 @@
|
|
|
613
612
|
}
|
|
614
613
|
}
|
|
615
614
|
],
|
|
615
|
+
"no-caller": "error",
|
|
616
|
+
"no-eval": "error",
|
|
617
|
+
"no-delete-var": "error",
|
|
618
|
+
"no-octal-escape": "error",
|
|
616
619
|
"no-duplicate-imports": [
|
|
617
620
|
"error",
|
|
618
621
|
{
|
|
@@ -927,9 +930,6 @@
|
|
|
927
930
|
"sonarjs/table-header": "off",
|
|
928
931
|
"sonarjs/no-implicit-global": "off",
|
|
929
932
|
"sonarjs/no-control-regex": "off",
|
|
930
|
-
"no-caller": 2,
|
|
931
|
-
"no-eval": 2,
|
|
932
|
-
"no-octal-escape": 2,
|
|
933
933
|
"curly": 0,
|
|
934
934
|
"@typescript-eslint/lines-around-comment": 0,
|
|
935
935
|
"@typescript-eslint/quotes": 0,
|
package/dist/browser-esm.js
CHANGED
|
@@ -31,7 +31,6 @@ export default [
|
|
|
31
31
|
"no-constant-condition": "error",
|
|
32
32
|
"no-control-regex": "error",
|
|
33
33
|
"no-debugger": "error",
|
|
34
|
-
"no-delete-var": "error",
|
|
35
34
|
"no-dupe-args": "error",
|
|
36
35
|
"no-dupe-class-members": "error",
|
|
37
36
|
"no-dupe-else-if": "error",
|
|
@@ -625,6 +624,10 @@ export default [
|
|
|
625
624
|
},
|
|
626
625
|
},
|
|
627
626
|
],
|
|
627
|
+
"no-caller": "error",
|
|
628
|
+
"no-eval": "error",
|
|
629
|
+
"no-delete-var": "error",
|
|
630
|
+
"no-octal-escape": "error",
|
|
628
631
|
"no-duplicate-imports": [
|
|
629
632
|
"error",
|
|
630
633
|
{
|
|
@@ -2297,14 +2300,6 @@ export default [
|
|
|
2297
2300
|
"sonarjs/no-identical-functions": "off",
|
|
2298
2301
|
},
|
|
2299
2302
|
},
|
|
2300
|
-
{
|
|
2301
|
-
rules: {
|
|
2302
|
-
"no-caller": 2,
|
|
2303
|
-
"no-eval": 2,
|
|
2304
|
-
"no-delete-var": 2,
|
|
2305
|
-
"no-octal-escape": 2,
|
|
2306
|
-
},
|
|
2307
|
-
},
|
|
2308
2303
|
{
|
|
2309
2304
|
ignores: [
|
|
2310
2305
|
"**/dist/**/*.*",
|
package/dist/browser-esm.json
CHANGED
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
"no-constant-condition": "error",
|
|
21
21
|
"no-control-regex": "error",
|
|
22
22
|
"no-debugger": "error",
|
|
23
|
-
"no-delete-var": 2,
|
|
24
23
|
"no-dupe-args": "error",
|
|
25
24
|
"no-dupe-class-members": "error",
|
|
26
25
|
"no-dupe-else-if": "error",
|
|
@@ -614,6 +613,10 @@
|
|
|
614
613
|
}
|
|
615
614
|
}
|
|
616
615
|
],
|
|
616
|
+
"no-caller": "error",
|
|
617
|
+
"no-eval": "error",
|
|
618
|
+
"no-delete-var": "error",
|
|
619
|
+
"no-octal-escape": "error",
|
|
617
620
|
"no-duplicate-imports": [
|
|
618
621
|
"error",
|
|
619
622
|
{
|
|
@@ -928,9 +931,6 @@
|
|
|
928
931
|
"sonarjs/table-header": "off",
|
|
929
932
|
"sonarjs/no-implicit-global": "off",
|
|
930
933
|
"sonarjs/no-control-regex": "off",
|
|
931
|
-
"no-caller": 2,
|
|
932
|
-
"no-eval": 2,
|
|
933
|
-
"no-octal-escape": 2,
|
|
934
934
|
"curly": 0,
|
|
935
935
|
"@typescript-eslint/lines-around-comment": 0,
|
|
936
936
|
"@typescript-eslint/quotes": 0,
|
package/dist/esm-playwright.js
CHANGED
|
@@ -34,7 +34,6 @@ export default [
|
|
|
34
34
|
"no-constant-condition": "error",
|
|
35
35
|
"no-control-regex": "error",
|
|
36
36
|
"no-debugger": "error",
|
|
37
|
-
"no-delete-var": "error",
|
|
38
37
|
"no-dupe-args": "error",
|
|
39
38
|
"no-dupe-class-members": "error",
|
|
40
39
|
"no-dupe-else-if": "error",
|
|
@@ -628,6 +627,10 @@ export default [
|
|
|
628
627
|
},
|
|
629
628
|
},
|
|
630
629
|
],
|
|
630
|
+
"no-caller": "error",
|
|
631
|
+
"no-eval": "error",
|
|
632
|
+
"no-delete-var": "error",
|
|
633
|
+
"no-octal-escape": "error",
|
|
631
634
|
"no-duplicate-imports": [
|
|
632
635
|
"error",
|
|
633
636
|
{
|
|
@@ -2300,14 +2303,6 @@ export default [
|
|
|
2300
2303
|
"sonarjs/no-identical-functions": "off",
|
|
2301
2304
|
},
|
|
2302
2305
|
},
|
|
2303
|
-
{
|
|
2304
|
-
rules: {
|
|
2305
|
-
"no-caller": 2,
|
|
2306
|
-
"no-eval": 2,
|
|
2307
|
-
"no-delete-var": 2,
|
|
2308
|
-
"no-octal-escape": 2,
|
|
2309
|
-
},
|
|
2310
|
-
},
|
|
2311
2306
|
{
|
|
2312
2307
|
ignores: [
|
|
2313
2308
|
"**/dist/**/*.*",
|
package/dist/esm-playwright.json
CHANGED
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"no-constant-condition": "error",
|
|
24
24
|
"no-control-regex": "error",
|
|
25
25
|
"no-debugger": "error",
|
|
26
|
-
"no-delete-var": 2,
|
|
27
26
|
"no-dupe-args": "error",
|
|
28
27
|
"no-dupe-class-members": "error",
|
|
29
28
|
"no-dupe-else-if": "error",
|
|
@@ -617,6 +616,10 @@
|
|
|
617
616
|
}
|
|
618
617
|
}
|
|
619
618
|
],
|
|
619
|
+
"no-caller": "error",
|
|
620
|
+
"no-eval": "error",
|
|
621
|
+
"no-delete-var": "error",
|
|
622
|
+
"no-octal-escape": "error",
|
|
620
623
|
"no-duplicate-imports": [
|
|
621
624
|
"error",
|
|
622
625
|
{
|
|
@@ -931,9 +934,6 @@
|
|
|
931
934
|
"sonarjs/table-header": "off",
|
|
932
935
|
"sonarjs/no-implicit-global": "off",
|
|
933
936
|
"sonarjs/no-control-regex": "off",
|
|
934
|
-
"no-caller": 2,
|
|
935
|
-
"no-eval": 2,
|
|
936
|
-
"no-octal-escape": 2,
|
|
937
937
|
"curly": 0,
|
|
938
938
|
"@typescript-eslint/lines-around-comment": 0,
|
|
939
939
|
"@typescript-eslint/quotes": 0,
|
|
@@ -36,7 +36,6 @@ export default [
|
|
|
36
36
|
"no-constant-condition": "error",
|
|
37
37
|
"no-control-regex": "error",
|
|
38
38
|
"no-debugger": "error",
|
|
39
|
-
"no-delete-var": "error",
|
|
40
39
|
"no-dupe-args": "error",
|
|
41
40
|
"no-dupe-class-members": "error",
|
|
42
41
|
"no-dupe-else-if": "error",
|
|
@@ -630,6 +629,10 @@ export default [
|
|
|
630
629
|
},
|
|
631
630
|
},
|
|
632
631
|
],
|
|
632
|
+
"no-caller": "error",
|
|
633
|
+
"no-eval": "error",
|
|
634
|
+
"no-delete-var": "error",
|
|
635
|
+
"no-octal-escape": "error",
|
|
633
636
|
"no-duplicate-imports": [
|
|
634
637
|
"error",
|
|
635
638
|
{
|
|
@@ -2302,14 +2305,6 @@ export default [
|
|
|
2302
2305
|
"sonarjs/no-identical-functions": "off",
|
|
2303
2306
|
},
|
|
2304
2307
|
},
|
|
2305
|
-
{
|
|
2306
|
-
rules: {
|
|
2307
|
-
"no-caller": 2,
|
|
2308
|
-
"no-eval": 2,
|
|
2309
|
-
"no-delete-var": 2,
|
|
2310
|
-
"no-octal-escape": 2,
|
|
2311
|
-
},
|
|
2312
|
-
},
|
|
2313
2308
|
{
|
|
2314
2309
|
ignores: [
|
|
2315
2310
|
"**/dist/**/*.*",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"no-constant-condition": "error",
|
|
26
26
|
"no-control-regex": "error",
|
|
27
27
|
"no-debugger": "error",
|
|
28
|
-
"no-delete-var": 2,
|
|
29
28
|
"no-dupe-args": "error",
|
|
30
29
|
"no-dupe-class-members": "error",
|
|
31
30
|
"no-dupe-else-if": "error",
|
|
@@ -619,6 +618,10 @@
|
|
|
619
618
|
}
|
|
620
619
|
}
|
|
621
620
|
],
|
|
621
|
+
"no-caller": "error",
|
|
622
|
+
"no-eval": "error",
|
|
623
|
+
"no-delete-var": "error",
|
|
624
|
+
"no-octal-escape": "error",
|
|
622
625
|
"no-duplicate-imports": [
|
|
623
626
|
"error",
|
|
624
627
|
{
|
|
@@ -933,9 +936,6 @@
|
|
|
933
936
|
"sonarjs/table-header": "off",
|
|
934
937
|
"sonarjs/no-implicit-global": "off",
|
|
935
938
|
"sonarjs/no-control-regex": "off",
|
|
936
|
-
"no-caller": 2,
|
|
937
|
-
"no-eval": 2,
|
|
938
|
-
"no-octal-escape": 2,
|
|
939
939
|
"curly": 0,
|
|
940
940
|
"@typescript-eslint/lines-around-comment": 0,
|
|
941
941
|
"@typescript-eslint/quotes": 0,
|
|
@@ -34,7 +34,6 @@ export default [
|
|
|
34
34
|
"no-constant-condition": "error",
|
|
35
35
|
"no-control-regex": "error",
|
|
36
36
|
"no-debugger": "error",
|
|
37
|
-
"no-delete-var": "error",
|
|
38
37
|
"no-dupe-args": "error",
|
|
39
38
|
"no-dupe-class-members": "error",
|
|
40
39
|
"no-dupe-else-if": "error",
|
|
@@ -628,6 +627,10 @@ export default [
|
|
|
628
627
|
},
|
|
629
628
|
},
|
|
630
629
|
],
|
|
630
|
+
"no-caller": "error",
|
|
631
|
+
"no-eval": "error",
|
|
632
|
+
"no-delete-var": "error",
|
|
633
|
+
"no-octal-escape": "error",
|
|
631
634
|
"no-duplicate-imports": [
|
|
632
635
|
"error",
|
|
633
636
|
{
|
|
@@ -2300,14 +2303,6 @@ export default [
|
|
|
2300
2303
|
"sonarjs/no-identical-functions": "off",
|
|
2301
2304
|
},
|
|
2302
2305
|
},
|
|
2303
|
-
{
|
|
2304
|
-
rules: {
|
|
2305
|
-
"no-caller": 2,
|
|
2306
|
-
"no-eval": 2,
|
|
2307
|
-
"no-delete-var": 2,
|
|
2308
|
-
"no-octal-escape": 2,
|
|
2309
|
-
},
|
|
2310
|
-
},
|
|
2311
2306
|
{
|
|
2312
2307
|
ignores: [
|
|
2313
2308
|
"**/dist/**/*.*",
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"no-constant-condition": "error",
|
|
24
24
|
"no-control-regex": "error",
|
|
25
25
|
"no-debugger": "error",
|
|
26
|
-
"no-delete-var": 2,
|
|
27
26
|
"no-dupe-args": "error",
|
|
28
27
|
"no-dupe-class-members": "error",
|
|
29
28
|
"no-dupe-else-if": "error",
|
|
@@ -617,6 +616,10 @@
|
|
|
617
616
|
}
|
|
618
617
|
}
|
|
619
618
|
],
|
|
619
|
+
"no-caller": "error",
|
|
620
|
+
"no-eval": "error",
|
|
621
|
+
"no-delete-var": "error",
|
|
622
|
+
"no-octal-escape": "error",
|
|
620
623
|
"no-duplicate-imports": [
|
|
621
624
|
"error",
|
|
622
625
|
{
|
|
@@ -931,9 +934,6 @@
|
|
|
931
934
|
"sonarjs/table-header": "off",
|
|
932
935
|
"sonarjs/no-implicit-global": "off",
|
|
933
936
|
"sonarjs/no-control-regex": "off",
|
|
934
|
-
"no-caller": 2,
|
|
935
|
-
"no-eval": 2,
|
|
936
|
-
"no-octal-escape": 2,
|
|
937
937
|
"curly": 0,
|
|
938
938
|
"@typescript-eslint/lines-around-comment": 0,
|
|
939
939
|
"@typescript-eslint/quotes": 0,
|
|
@@ -36,7 +36,6 @@ export default [
|
|
|
36
36
|
"no-constant-condition": "error",
|
|
37
37
|
"no-control-regex": "error",
|
|
38
38
|
"no-debugger": "error",
|
|
39
|
-
"no-delete-var": "error",
|
|
40
39
|
"no-dupe-args": "error",
|
|
41
40
|
"no-dupe-class-members": "error",
|
|
42
41
|
"no-dupe-else-if": "error",
|
|
@@ -630,6 +629,10 @@ export default [
|
|
|
630
629
|
},
|
|
631
630
|
},
|
|
632
631
|
],
|
|
632
|
+
"no-caller": "error",
|
|
633
|
+
"no-eval": "error",
|
|
634
|
+
"no-delete-var": "error",
|
|
635
|
+
"no-octal-escape": "error",
|
|
633
636
|
"no-duplicate-imports": [
|
|
634
637
|
"error",
|
|
635
638
|
{
|
|
@@ -2302,14 +2305,6 @@ export default [
|
|
|
2302
2305
|
"sonarjs/no-identical-functions": "off",
|
|
2303
2306
|
},
|
|
2304
2307
|
},
|
|
2305
|
-
{
|
|
2306
|
-
rules: {
|
|
2307
|
-
"no-caller": 2,
|
|
2308
|
-
"no-eval": 2,
|
|
2309
|
-
"no-delete-var": 2,
|
|
2310
|
-
"no-octal-escape": 2,
|
|
2311
|
-
},
|
|
2312
|
-
},
|
|
2313
2308
|
{
|
|
2314
2309
|
ignores: [
|
|
2315
2310
|
"**/dist/**/*.*",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"no-constant-condition": "error",
|
|
26
26
|
"no-control-regex": "error",
|
|
27
27
|
"no-debugger": "error",
|
|
28
|
-
"no-delete-var": 2,
|
|
29
28
|
"no-dupe-args": "error",
|
|
30
29
|
"no-dupe-class-members": "error",
|
|
31
30
|
"no-dupe-else-if": "error",
|
|
@@ -619,6 +618,10 @@
|
|
|
619
618
|
}
|
|
620
619
|
}
|
|
621
620
|
],
|
|
621
|
+
"no-caller": "error",
|
|
622
|
+
"no-eval": "error",
|
|
623
|
+
"no-delete-var": "error",
|
|
624
|
+
"no-octal-escape": "error",
|
|
622
625
|
"no-duplicate-imports": [
|
|
623
626
|
"error",
|
|
624
627
|
{
|
|
@@ -933,9 +936,6 @@
|
|
|
933
936
|
"sonarjs/table-header": "off",
|
|
934
937
|
"sonarjs/no-implicit-global": "off",
|
|
935
938
|
"sonarjs/no-control-regex": "off",
|
|
936
|
-
"no-caller": 2,
|
|
937
|
-
"no-eval": 2,
|
|
938
|
-
"no-octal-escape": 2,
|
|
939
939
|
"curly": 0,
|
|
940
940
|
"@typescript-eslint/lines-around-comment": 0,
|
|
941
941
|
"@typescript-eslint/quotes": 0,
|
package/dist/esm-react-vitest.js
CHANGED
|
@@ -35,7 +35,6 @@ export default [
|
|
|
35
35
|
"no-constant-condition": "error",
|
|
36
36
|
"no-control-regex": "error",
|
|
37
37
|
"no-debugger": "error",
|
|
38
|
-
"no-delete-var": "error",
|
|
39
38
|
"no-dupe-args": "error",
|
|
40
39
|
"no-dupe-class-members": "error",
|
|
41
40
|
"no-dupe-else-if": "error",
|
|
@@ -629,6 +628,10 @@ export default [
|
|
|
629
628
|
},
|
|
630
629
|
},
|
|
631
630
|
],
|
|
631
|
+
"no-caller": "error",
|
|
632
|
+
"no-eval": "error",
|
|
633
|
+
"no-delete-var": "error",
|
|
634
|
+
"no-octal-escape": "error",
|
|
632
635
|
"no-duplicate-imports": [
|
|
633
636
|
"error",
|
|
634
637
|
{
|
|
@@ -2301,14 +2304,6 @@ export default [
|
|
|
2301
2304
|
"sonarjs/no-identical-functions": "off",
|
|
2302
2305
|
},
|
|
2303
2306
|
},
|
|
2304
|
-
{
|
|
2305
|
-
rules: {
|
|
2306
|
-
"no-caller": 2,
|
|
2307
|
-
"no-eval": 2,
|
|
2308
|
-
"no-delete-var": 2,
|
|
2309
|
-
"no-octal-escape": 2,
|
|
2310
|
-
},
|
|
2311
|
-
},
|
|
2312
2307
|
{
|
|
2313
2308
|
ignores: [
|
|
2314
2309
|
"**/dist/**/*.*",
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
"no-constant-condition": "error",
|
|
25
25
|
"no-control-regex": "error",
|
|
26
26
|
"no-debugger": "error",
|
|
27
|
-
"no-delete-var": 2,
|
|
28
27
|
"no-dupe-args": "error",
|
|
29
28
|
"no-dupe-class-members": "error",
|
|
30
29
|
"no-dupe-else-if": "error",
|
|
@@ -618,6 +617,10 @@
|
|
|
618
617
|
}
|
|
619
618
|
}
|
|
620
619
|
],
|
|
620
|
+
"no-caller": "error",
|
|
621
|
+
"no-eval": "error",
|
|
622
|
+
"no-delete-var": "error",
|
|
623
|
+
"no-octal-escape": "error",
|
|
621
624
|
"no-duplicate-imports": [
|
|
622
625
|
"error",
|
|
623
626
|
{
|
|
@@ -932,9 +935,6 @@
|
|
|
932
935
|
"sonarjs/table-header": "off",
|
|
933
936
|
"sonarjs/no-implicit-global": "off",
|
|
934
937
|
"sonarjs/no-control-regex": "off",
|
|
935
|
-
"no-caller": 2,
|
|
936
|
-
"no-eval": 2,
|
|
937
|
-
"no-octal-escape": 2,
|
|
938
938
|
"curly": 0,
|
|
939
939
|
"@typescript-eslint/lines-around-comment": 0,
|
|
940
940
|
"@typescript-eslint/quotes": 0,
|
package/dist/esm-react.js
CHANGED
|
@@ -33,7 +33,6 @@ export default [
|
|
|
33
33
|
"no-constant-condition": "error",
|
|
34
34
|
"no-control-regex": "error",
|
|
35
35
|
"no-debugger": "error",
|
|
36
|
-
"no-delete-var": "error",
|
|
37
36
|
"no-dupe-args": "error",
|
|
38
37
|
"no-dupe-class-members": "error",
|
|
39
38
|
"no-dupe-else-if": "error",
|
|
@@ -627,6 +626,10 @@ export default [
|
|
|
627
626
|
},
|
|
628
627
|
},
|
|
629
628
|
],
|
|
629
|
+
"no-caller": "error",
|
|
630
|
+
"no-eval": "error",
|
|
631
|
+
"no-delete-var": "error",
|
|
632
|
+
"no-octal-escape": "error",
|
|
630
633
|
"no-duplicate-imports": [
|
|
631
634
|
"error",
|
|
632
635
|
{
|
|
@@ -2299,14 +2302,6 @@ export default [
|
|
|
2299
2302
|
"sonarjs/no-identical-functions": "off",
|
|
2300
2303
|
},
|
|
2301
2304
|
},
|
|
2302
|
-
{
|
|
2303
|
-
rules: {
|
|
2304
|
-
"no-caller": 2,
|
|
2305
|
-
"no-eval": 2,
|
|
2306
|
-
"no-delete-var": 2,
|
|
2307
|
-
"no-octal-escape": 2,
|
|
2308
|
-
},
|
|
2309
|
-
},
|
|
2310
2305
|
{
|
|
2311
2306
|
ignores: [
|
|
2312
2307
|
"**/dist/**/*.*",
|
package/dist/esm-react.json
CHANGED
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
"no-constant-condition": "error",
|
|
23
23
|
"no-control-regex": "error",
|
|
24
24
|
"no-debugger": "error",
|
|
25
|
-
"no-delete-var": 2,
|
|
26
25
|
"no-dupe-args": "error",
|
|
27
26
|
"no-dupe-class-members": "error",
|
|
28
27
|
"no-dupe-else-if": "error",
|
|
@@ -616,6 +615,10 @@
|
|
|
616
615
|
}
|
|
617
616
|
}
|
|
618
617
|
],
|
|
618
|
+
"no-caller": "error",
|
|
619
|
+
"no-eval": "error",
|
|
620
|
+
"no-delete-var": "error",
|
|
621
|
+
"no-octal-escape": "error",
|
|
619
622
|
"no-duplicate-imports": [
|
|
620
623
|
"error",
|
|
621
624
|
{
|
|
@@ -930,9 +933,6 @@
|
|
|
930
933
|
"sonarjs/table-header": "off",
|
|
931
934
|
"sonarjs/no-implicit-global": "off",
|
|
932
935
|
"sonarjs/no-control-regex": "off",
|
|
933
|
-
"no-caller": 2,
|
|
934
|
-
"no-eval": 2,
|
|
935
|
-
"no-octal-escape": 2,
|
|
936
936
|
"curly": 0,
|
|
937
937
|
"@typescript-eslint/lines-around-comment": 0,
|
|
938
938
|
"@typescript-eslint/quotes": 0,
|
package/dist/esm-vitest-rtl.js
CHANGED
|
@@ -34,7 +34,6 @@ export default [
|
|
|
34
34
|
"no-constant-condition": "error",
|
|
35
35
|
"no-control-regex": "error",
|
|
36
36
|
"no-debugger": "error",
|
|
37
|
-
"no-delete-var": "error",
|
|
38
37
|
"no-dupe-args": "error",
|
|
39
38
|
"no-dupe-class-members": "error",
|
|
40
39
|
"no-dupe-else-if": "error",
|
|
@@ -628,6 +627,10 @@ export default [
|
|
|
628
627
|
},
|
|
629
628
|
},
|
|
630
629
|
],
|
|
630
|
+
"no-caller": "error",
|
|
631
|
+
"no-eval": "error",
|
|
632
|
+
"no-delete-var": "error",
|
|
633
|
+
"no-octal-escape": "error",
|
|
631
634
|
"no-duplicate-imports": [
|
|
632
635
|
"error",
|
|
633
636
|
{
|
|
@@ -2300,14 +2303,6 @@ export default [
|
|
|
2300
2303
|
"sonarjs/no-identical-functions": "off",
|
|
2301
2304
|
},
|
|
2302
2305
|
},
|
|
2303
|
-
{
|
|
2304
|
-
rules: {
|
|
2305
|
-
"no-caller": 2,
|
|
2306
|
-
"no-eval": 2,
|
|
2307
|
-
"no-delete-var": 2,
|
|
2308
|
-
"no-octal-escape": 2,
|
|
2309
|
-
},
|
|
2310
|
-
},
|
|
2311
2306
|
{
|
|
2312
2307
|
ignores: [
|
|
2313
2308
|
"**/dist/**/*.*",
|
package/dist/esm-vitest-rtl.json
CHANGED
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"no-constant-condition": "error",
|
|
24
24
|
"no-control-regex": "error",
|
|
25
25
|
"no-debugger": "error",
|
|
26
|
-
"no-delete-var": 2,
|
|
27
26
|
"no-dupe-args": "error",
|
|
28
27
|
"no-dupe-class-members": "error",
|
|
29
28
|
"no-dupe-else-if": "error",
|
|
@@ -617,6 +616,10 @@
|
|
|
617
616
|
}
|
|
618
617
|
}
|
|
619
618
|
],
|
|
619
|
+
"no-caller": "error",
|
|
620
|
+
"no-eval": "error",
|
|
621
|
+
"no-delete-var": "error",
|
|
622
|
+
"no-octal-escape": "error",
|
|
620
623
|
"no-duplicate-imports": [
|
|
621
624
|
"error",
|
|
622
625
|
{
|
|
@@ -931,9 +934,6 @@
|
|
|
931
934
|
"sonarjs/table-header": "off",
|
|
932
935
|
"sonarjs/no-implicit-global": "off",
|
|
933
936
|
"sonarjs/no-control-regex": "off",
|
|
934
|
-
"no-caller": 2,
|
|
935
|
-
"no-eval": 2,
|
|
936
|
-
"no-octal-escape": 2,
|
|
937
937
|
"curly": 0,
|
|
938
938
|
"@typescript-eslint/lines-around-comment": 0,
|
|
939
939
|
"@typescript-eslint/quotes": 0,
|
package/dist/esm-vitest.js
CHANGED
|
@@ -33,7 +33,6 @@ export default [
|
|
|
33
33
|
"no-constant-condition": "error",
|
|
34
34
|
"no-control-regex": "error",
|
|
35
35
|
"no-debugger": "error",
|
|
36
|
-
"no-delete-var": "error",
|
|
37
36
|
"no-dupe-args": "error",
|
|
38
37
|
"no-dupe-class-members": "error",
|
|
39
38
|
"no-dupe-else-if": "error",
|
|
@@ -627,6 +626,10 @@ export default [
|
|
|
627
626
|
},
|
|
628
627
|
},
|
|
629
628
|
],
|
|
629
|
+
"no-caller": "error",
|
|
630
|
+
"no-eval": "error",
|
|
631
|
+
"no-delete-var": "error",
|
|
632
|
+
"no-octal-escape": "error",
|
|
630
633
|
"no-duplicate-imports": [
|
|
631
634
|
"error",
|
|
632
635
|
{
|
|
@@ -2299,14 +2302,6 @@ export default [
|
|
|
2299
2302
|
"sonarjs/no-identical-functions": "off",
|
|
2300
2303
|
},
|
|
2301
2304
|
},
|
|
2302
|
-
{
|
|
2303
|
-
rules: {
|
|
2304
|
-
"no-caller": 2,
|
|
2305
|
-
"no-eval": 2,
|
|
2306
|
-
"no-delete-var": 2,
|
|
2307
|
-
"no-octal-escape": 2,
|
|
2308
|
-
},
|
|
2309
|
-
},
|
|
2310
2305
|
{
|
|
2311
2306
|
ignores: [
|
|
2312
2307
|
"**/dist/**/*.*",
|
package/dist/esm-vitest.json
CHANGED
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
"no-constant-condition": "error",
|
|
23
23
|
"no-control-regex": "error",
|
|
24
24
|
"no-debugger": "error",
|
|
25
|
-
"no-delete-var": 2,
|
|
26
25
|
"no-dupe-args": "error",
|
|
27
26
|
"no-dupe-class-members": "error",
|
|
28
27
|
"no-dupe-else-if": "error",
|
|
@@ -616,6 +615,10 @@
|
|
|
616
615
|
}
|
|
617
616
|
}
|
|
618
617
|
],
|
|
618
|
+
"no-caller": "error",
|
|
619
|
+
"no-eval": "error",
|
|
620
|
+
"no-delete-var": "error",
|
|
621
|
+
"no-octal-escape": "error",
|
|
619
622
|
"no-duplicate-imports": [
|
|
620
623
|
"error",
|
|
621
624
|
{
|
|
@@ -930,9 +933,6 @@
|
|
|
930
933
|
"sonarjs/table-header": "off",
|
|
931
934
|
"sonarjs/no-implicit-global": "off",
|
|
932
935
|
"sonarjs/no-control-regex": "off",
|
|
933
|
-
"no-caller": 2,
|
|
934
|
-
"no-eval": 2,
|
|
935
|
-
"no-octal-escape": 2,
|
|
936
936
|
"curly": 0,
|
|
937
937
|
"@typescript-eslint/lines-around-comment": 0,
|
|
938
938
|
"@typescript-eslint/quotes": 0,
|
package/dist/esm.js
CHANGED
|
@@ -31,7 +31,6 @@ export default [
|
|
|
31
31
|
"no-constant-condition": "error",
|
|
32
32
|
"no-control-regex": "error",
|
|
33
33
|
"no-debugger": "error",
|
|
34
|
-
"no-delete-var": "error",
|
|
35
34
|
"no-dupe-args": "error",
|
|
36
35
|
"no-dupe-class-members": "error",
|
|
37
36
|
"no-dupe-else-if": "error",
|
|
@@ -625,6 +624,10 @@ export default [
|
|
|
625
624
|
},
|
|
626
625
|
},
|
|
627
626
|
],
|
|
627
|
+
"no-caller": "error",
|
|
628
|
+
"no-eval": "error",
|
|
629
|
+
"no-delete-var": "error",
|
|
630
|
+
"no-octal-escape": "error",
|
|
628
631
|
"no-duplicate-imports": [
|
|
629
632
|
"error",
|
|
630
633
|
{
|
|
@@ -2297,14 +2300,6 @@ export default [
|
|
|
2297
2300
|
"sonarjs/no-identical-functions": "off",
|
|
2298
2301
|
},
|
|
2299
2302
|
},
|
|
2300
|
-
{
|
|
2301
|
-
rules: {
|
|
2302
|
-
"no-caller": 2,
|
|
2303
|
-
"no-eval": 2,
|
|
2304
|
-
"no-delete-var": 2,
|
|
2305
|
-
"no-octal-escape": 2,
|
|
2306
|
-
},
|
|
2307
|
-
},
|
|
2308
2303
|
{
|
|
2309
2304
|
ignores: [
|
|
2310
2305
|
"**/dist/**/*.*",
|
package/dist/esm.json
CHANGED
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
"no-constant-condition": "error",
|
|
21
21
|
"no-control-regex": "error",
|
|
22
22
|
"no-debugger": "error",
|
|
23
|
-
"no-delete-var": 2,
|
|
24
23
|
"no-dupe-args": "error",
|
|
25
24
|
"no-dupe-class-members": "error",
|
|
26
25
|
"no-dupe-else-if": "error",
|
|
@@ -614,6 +613,10 @@
|
|
|
614
613
|
}
|
|
615
614
|
}
|
|
616
615
|
],
|
|
616
|
+
"no-caller": "error",
|
|
617
|
+
"no-eval": "error",
|
|
618
|
+
"no-delete-var": "error",
|
|
619
|
+
"no-octal-escape": "error",
|
|
617
620
|
"no-duplicate-imports": [
|
|
618
621
|
"error",
|
|
619
622
|
{
|
|
@@ -928,9 +931,6 @@
|
|
|
928
931
|
"sonarjs/table-header": "off",
|
|
929
932
|
"sonarjs/no-implicit-global": "off",
|
|
930
933
|
"sonarjs/no-control-regex": "off",
|
|
931
|
-
"no-caller": 2,
|
|
932
|
-
"no-eval": 2,
|
|
933
|
-
"no-octal-escape": 2,
|
|
934
934
|
"curly": 0,
|
|
935
935
|
"@typescript-eslint/lines-around-comment": 0,
|
|
936
936
|
"@typescript-eslint/quotes": 0,
|
package/dist/oxlint-base.js
CHANGED
|
@@ -1172,13 +1172,6 @@ export default [
|
|
|
1172
1172
|
"no-array-constructor": "off",
|
|
1173
1173
|
"no-unused-expressions": "off",
|
|
1174
1174
|
"no-unused-vars": "off",
|
|
1175
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1176
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1177
|
-
"error",
|
|
1178
|
-
{
|
|
1179
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1180
|
-
},
|
|
1181
|
-
],
|
|
1182
1175
|
"@typescript-eslint/naming-convention": [
|
|
1183
1176
|
"error",
|
|
1184
1177
|
{
|
|
@@ -1172,13 +1172,6 @@ export default [
|
|
|
1172
1172
|
"no-array-constructor": "off",
|
|
1173
1173
|
"no-unused-expressions": "off",
|
|
1174
1174
|
"no-unused-vars": "off",
|
|
1175
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1176
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1177
|
-
"error",
|
|
1178
|
-
{
|
|
1179
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1180
|
-
},
|
|
1181
|
-
],
|
|
1182
1175
|
"@typescript-eslint/naming-convention": [
|
|
1183
1176
|
"error",
|
|
1184
1177
|
{
|
|
@@ -1172,13 +1172,6 @@ export default [
|
|
|
1172
1172
|
"no-array-constructor": "off",
|
|
1173
1173
|
"no-unused-expressions": "off",
|
|
1174
1174
|
"no-unused-vars": "off",
|
|
1175
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1176
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1177
|
-
"error",
|
|
1178
|
-
{
|
|
1179
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1180
|
-
},
|
|
1181
|
-
],
|
|
1182
1175
|
"@typescript-eslint/naming-convention": [
|
|
1183
1176
|
"error",
|
|
1184
1177
|
{
|
|
@@ -1174,13 +1174,6 @@ export default [
|
|
|
1174
1174
|
"no-array-constructor": "off",
|
|
1175
1175
|
"no-unused-expressions": "off",
|
|
1176
1176
|
"no-unused-vars": "off",
|
|
1177
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1178
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1179
|
-
"error",
|
|
1180
|
-
{
|
|
1181
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1182
|
-
},
|
|
1183
|
-
],
|
|
1184
1177
|
"@typescript-eslint/naming-convention": [
|
|
1185
1178
|
"error",
|
|
1186
1179
|
{
|
|
@@ -1174,13 +1174,6 @@ export default [
|
|
|
1174
1174
|
"no-array-constructor": "off",
|
|
1175
1175
|
"no-unused-expressions": "off",
|
|
1176
1176
|
"no-unused-vars": "off",
|
|
1177
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1178
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1179
|
-
"error",
|
|
1180
|
-
{
|
|
1181
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1182
|
-
},
|
|
1183
|
-
],
|
|
1184
1177
|
"@typescript-eslint/naming-convention": [
|
|
1185
1178
|
"error",
|
|
1186
1179
|
{
|
|
@@ -1174,13 +1174,6 @@ export default [
|
|
|
1174
1174
|
"no-array-constructor": "off",
|
|
1175
1175
|
"no-unused-expressions": "off",
|
|
1176
1176
|
"no-unused-vars": "off",
|
|
1177
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1178
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1179
|
-
"error",
|
|
1180
|
-
{
|
|
1181
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1182
|
-
},
|
|
1183
|
-
],
|
|
1184
1177
|
"@typescript-eslint/naming-convention": [
|
|
1185
1178
|
"error",
|
|
1186
1179
|
{
|
|
@@ -1174,13 +1174,6 @@ export default [
|
|
|
1174
1174
|
"no-array-constructor": "off",
|
|
1175
1175
|
"no-unused-expressions": "off",
|
|
1176
1176
|
"no-unused-vars": "off",
|
|
1177
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1178
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1179
|
-
"error",
|
|
1180
|
-
{
|
|
1181
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1182
|
-
},
|
|
1183
|
-
],
|
|
1184
1177
|
"@typescript-eslint/naming-convention": [
|
|
1185
1178
|
"error",
|
|
1186
1179
|
{
|
package/dist/oxlint-esm-react.js
CHANGED
|
@@ -1174,13 +1174,6 @@ export default [
|
|
|
1174
1174
|
"no-array-constructor": "off",
|
|
1175
1175
|
"no-unused-expressions": "off",
|
|
1176
1176
|
"no-unused-vars": "off",
|
|
1177
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1178
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1179
|
-
"error",
|
|
1180
|
-
{
|
|
1181
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1182
|
-
},
|
|
1183
|
-
],
|
|
1184
1177
|
"@typescript-eslint/naming-convention": [
|
|
1185
1178
|
"error",
|
|
1186
1179
|
{
|
|
@@ -1172,13 +1172,6 @@ export default [
|
|
|
1172
1172
|
"no-array-constructor": "off",
|
|
1173
1173
|
"no-unused-expressions": "off",
|
|
1174
1174
|
"no-unused-vars": "off",
|
|
1175
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1176
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1177
|
-
"error",
|
|
1178
|
-
{
|
|
1179
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1180
|
-
},
|
|
1181
|
-
],
|
|
1182
1175
|
"@typescript-eslint/naming-convention": [
|
|
1183
1176
|
"error",
|
|
1184
1177
|
{
|
|
@@ -1172,13 +1172,6 @@ export default [
|
|
|
1172
1172
|
"no-array-constructor": "off",
|
|
1173
1173
|
"no-unused-expressions": "off",
|
|
1174
1174
|
"no-unused-vars": "off",
|
|
1175
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1176
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1177
|
-
"error",
|
|
1178
|
-
{
|
|
1179
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1180
|
-
},
|
|
1181
|
-
],
|
|
1182
1175
|
"@typescript-eslint/naming-convention": [
|
|
1183
1176
|
"error",
|
|
1184
1177
|
{
|
package/dist/oxlint-esm.js
CHANGED
|
@@ -1172,13 +1172,6 @@ export default [
|
|
|
1172
1172
|
"no-array-constructor": "off",
|
|
1173
1173
|
"no-unused-expressions": "off",
|
|
1174
1174
|
"no-unused-vars": "off",
|
|
1175
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1176
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1177
|
-
"error",
|
|
1178
|
-
{
|
|
1179
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1180
|
-
},
|
|
1181
|
-
],
|
|
1182
1175
|
"@typescript-eslint/naming-convention": [
|
|
1183
1176
|
"error",
|
|
1184
1177
|
{
|
|
@@ -1174,13 +1174,6 @@ export default [
|
|
|
1174
1174
|
"no-array-constructor": "off",
|
|
1175
1175
|
"no-unused-expressions": "off",
|
|
1176
1176
|
"no-unused-vars": "off",
|
|
1177
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1178
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1179
|
-
"error",
|
|
1180
|
-
{
|
|
1181
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1182
|
-
},
|
|
1183
|
-
],
|
|
1184
1177
|
"@typescript-eslint/naming-convention": [
|
|
1185
1178
|
"error",
|
|
1186
1179
|
{
|
|
@@ -1174,13 +1174,6 @@ export default [
|
|
|
1174
1174
|
"no-array-constructor": "off",
|
|
1175
1175
|
"no-unused-expressions": "off",
|
|
1176
1176
|
"no-unused-vars": "off",
|
|
1177
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1178
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1179
|
-
"error",
|
|
1180
|
-
{
|
|
1181
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1182
|
-
},
|
|
1183
|
-
],
|
|
1184
1177
|
"@typescript-eslint/naming-convention": [
|
|
1185
1178
|
"error",
|
|
1186
1179
|
{
|
|
@@ -1174,13 +1174,6 @@ export default [
|
|
|
1174
1174
|
"no-array-constructor": "off",
|
|
1175
1175
|
"no-unused-expressions": "off",
|
|
1176
1176
|
"no-unused-vars": "off",
|
|
1177
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1178
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1179
|
-
"error",
|
|
1180
|
-
{
|
|
1181
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1182
|
-
},
|
|
1183
|
-
],
|
|
1184
1177
|
"@typescript-eslint/naming-convention": [
|
|
1185
1178
|
"error",
|
|
1186
1179
|
{
|
package/dist/oxlint-react.js
CHANGED
|
@@ -1174,13 +1174,6 @@ export default [
|
|
|
1174
1174
|
"no-array-constructor": "off",
|
|
1175
1175
|
"no-unused-expressions": "off",
|
|
1176
1176
|
"no-unused-vars": "off",
|
|
1177
|
-
"@typescript-eslint/prefer-optional-chain": "error",
|
|
1178
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
1179
|
-
"error",
|
|
1180
|
-
{
|
|
1181
|
-
fixMixedExportsWithInlineTypeSpecifier: false,
|
|
1182
|
-
},
|
|
1183
|
-
],
|
|
1184
1177
|
"@typescript-eslint/naming-convention": [
|
|
1185
1178
|
"error",
|
|
1186
1179
|
{
|
package/dist/react-playwright.js
CHANGED
|
@@ -35,7 +35,6 @@ export default [
|
|
|
35
35
|
"no-constant-condition": "error",
|
|
36
36
|
"no-control-regex": "error",
|
|
37
37
|
"no-debugger": "error",
|
|
38
|
-
"no-delete-var": "error",
|
|
39
38
|
"no-dupe-args": "error",
|
|
40
39
|
"no-dupe-class-members": "error",
|
|
41
40
|
"no-dupe-else-if": "error",
|
|
@@ -629,6 +628,10 @@ export default [
|
|
|
629
628
|
},
|
|
630
629
|
},
|
|
631
630
|
],
|
|
631
|
+
"no-caller": "error",
|
|
632
|
+
"no-eval": "error",
|
|
633
|
+
"no-delete-var": "error",
|
|
634
|
+
"no-octal-escape": "error",
|
|
632
635
|
"no-duplicate-imports": [
|
|
633
636
|
"error",
|
|
634
637
|
{
|
|
@@ -2301,14 +2304,6 @@ export default [
|
|
|
2301
2304
|
"sonarjs/no-identical-functions": "off",
|
|
2302
2305
|
},
|
|
2303
2306
|
},
|
|
2304
|
-
{
|
|
2305
|
-
rules: {
|
|
2306
|
-
"no-caller": 2,
|
|
2307
|
-
"no-eval": 2,
|
|
2308
|
-
"no-delete-var": 2,
|
|
2309
|
-
"no-octal-escape": 2,
|
|
2310
|
-
},
|
|
2311
|
-
},
|
|
2312
2307
|
{
|
|
2313
2308
|
ignores: [
|
|
2314
2309
|
"**/dist/**/*.*",
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
"no-constant-condition": "error",
|
|
25
25
|
"no-control-regex": "error",
|
|
26
26
|
"no-debugger": "error",
|
|
27
|
-
"no-delete-var": 2,
|
|
28
27
|
"no-dupe-args": "error",
|
|
29
28
|
"no-dupe-class-members": "error",
|
|
30
29
|
"no-dupe-else-if": "error",
|
|
@@ -618,6 +617,10 @@
|
|
|
618
617
|
}
|
|
619
618
|
}
|
|
620
619
|
],
|
|
620
|
+
"no-caller": "error",
|
|
621
|
+
"no-eval": "error",
|
|
622
|
+
"no-delete-var": "error",
|
|
623
|
+
"no-octal-escape": "error",
|
|
621
624
|
"no-duplicate-imports": [
|
|
622
625
|
"error",
|
|
623
626
|
{
|
|
@@ -932,9 +935,6 @@
|
|
|
932
935
|
"sonarjs/table-header": "off",
|
|
933
936
|
"sonarjs/no-implicit-global": "off",
|
|
934
937
|
"sonarjs/no-control-regex": "off",
|
|
935
|
-
"no-caller": 2,
|
|
936
|
-
"no-eval": 2,
|
|
937
|
-
"no-octal-escape": 2,
|
|
938
938
|
"curly": 0,
|
|
939
939
|
"@typescript-eslint/lines-around-comment": 0,
|
|
940
940
|
"@typescript-eslint/quotes": 0,
|
package/dist/react-vitest-rtl.js
CHANGED
|
@@ -35,7 +35,6 @@ export default [
|
|
|
35
35
|
"no-constant-condition": "error",
|
|
36
36
|
"no-control-regex": "error",
|
|
37
37
|
"no-debugger": "error",
|
|
38
|
-
"no-delete-var": "error",
|
|
39
38
|
"no-dupe-args": "error",
|
|
40
39
|
"no-dupe-class-members": "error",
|
|
41
40
|
"no-dupe-else-if": "error",
|
|
@@ -629,6 +628,10 @@ export default [
|
|
|
629
628
|
},
|
|
630
629
|
},
|
|
631
630
|
],
|
|
631
|
+
"no-caller": "error",
|
|
632
|
+
"no-eval": "error",
|
|
633
|
+
"no-delete-var": "error",
|
|
634
|
+
"no-octal-escape": "error",
|
|
632
635
|
"no-duplicate-imports": [
|
|
633
636
|
"error",
|
|
634
637
|
{
|
|
@@ -2301,14 +2304,6 @@ export default [
|
|
|
2301
2304
|
"sonarjs/no-identical-functions": "off",
|
|
2302
2305
|
},
|
|
2303
2306
|
},
|
|
2304
|
-
{
|
|
2305
|
-
rules: {
|
|
2306
|
-
"no-caller": 2,
|
|
2307
|
-
"no-eval": 2,
|
|
2308
|
-
"no-delete-var": 2,
|
|
2309
|
-
"no-octal-escape": 2,
|
|
2310
|
-
},
|
|
2311
|
-
},
|
|
2312
2307
|
{
|
|
2313
2308
|
ignores: [
|
|
2314
2309
|
"**/dist/**/*.*",
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
"no-constant-condition": "error",
|
|
25
25
|
"no-control-regex": "error",
|
|
26
26
|
"no-debugger": "error",
|
|
27
|
-
"no-delete-var": 2,
|
|
28
27
|
"no-dupe-args": "error",
|
|
29
28
|
"no-dupe-class-members": "error",
|
|
30
29
|
"no-dupe-else-if": "error",
|
|
@@ -618,6 +617,10 @@
|
|
|
618
617
|
}
|
|
619
618
|
}
|
|
620
619
|
],
|
|
620
|
+
"no-caller": "error",
|
|
621
|
+
"no-eval": "error",
|
|
622
|
+
"no-delete-var": "error",
|
|
623
|
+
"no-octal-escape": "error",
|
|
621
624
|
"no-duplicate-imports": [
|
|
622
625
|
"error",
|
|
623
626
|
{
|
|
@@ -932,9 +935,6 @@
|
|
|
932
935
|
"sonarjs/table-header": "off",
|
|
933
936
|
"sonarjs/no-implicit-global": "off",
|
|
934
937
|
"sonarjs/no-control-regex": "off",
|
|
935
|
-
"no-caller": 2,
|
|
936
|
-
"no-eval": 2,
|
|
937
|
-
"no-octal-escape": 2,
|
|
938
938
|
"curly": 0,
|
|
939
939
|
"@typescript-eslint/lines-around-comment": 0,
|
|
940
940
|
"@typescript-eslint/quotes": 0,
|
package/dist/react-vitest.js
CHANGED
|
@@ -34,7 +34,6 @@ export default [
|
|
|
34
34
|
"no-constant-condition": "error",
|
|
35
35
|
"no-control-regex": "error",
|
|
36
36
|
"no-debugger": "error",
|
|
37
|
-
"no-delete-var": "error",
|
|
38
37
|
"no-dupe-args": "error",
|
|
39
38
|
"no-dupe-class-members": "error",
|
|
40
39
|
"no-dupe-else-if": "error",
|
|
@@ -628,6 +627,10 @@ export default [
|
|
|
628
627
|
},
|
|
629
628
|
},
|
|
630
629
|
],
|
|
630
|
+
"no-caller": "error",
|
|
631
|
+
"no-eval": "error",
|
|
632
|
+
"no-delete-var": "error",
|
|
633
|
+
"no-octal-escape": "error",
|
|
631
634
|
"no-duplicate-imports": [
|
|
632
635
|
"error",
|
|
633
636
|
{
|
|
@@ -2300,14 +2303,6 @@ export default [
|
|
|
2300
2303
|
"sonarjs/no-identical-functions": "off",
|
|
2301
2304
|
},
|
|
2302
2305
|
},
|
|
2303
|
-
{
|
|
2304
|
-
rules: {
|
|
2305
|
-
"no-caller": 2,
|
|
2306
|
-
"no-eval": 2,
|
|
2307
|
-
"no-delete-var": 2,
|
|
2308
|
-
"no-octal-escape": 2,
|
|
2309
|
-
},
|
|
2310
|
-
},
|
|
2311
2306
|
{
|
|
2312
2307
|
ignores: [
|
|
2313
2308
|
"**/dist/**/*.*",
|
package/dist/react-vitest.json
CHANGED
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"no-constant-condition": "error",
|
|
24
24
|
"no-control-regex": "error",
|
|
25
25
|
"no-debugger": "error",
|
|
26
|
-
"no-delete-var": 2,
|
|
27
26
|
"no-dupe-args": "error",
|
|
28
27
|
"no-dupe-class-members": "error",
|
|
29
28
|
"no-dupe-else-if": "error",
|
|
@@ -617,6 +616,10 @@
|
|
|
617
616
|
}
|
|
618
617
|
}
|
|
619
618
|
],
|
|
619
|
+
"no-caller": "error",
|
|
620
|
+
"no-eval": "error",
|
|
621
|
+
"no-delete-var": "error",
|
|
622
|
+
"no-octal-escape": "error",
|
|
620
623
|
"no-duplicate-imports": [
|
|
621
624
|
"error",
|
|
622
625
|
{
|
|
@@ -931,9 +934,6 @@
|
|
|
931
934
|
"sonarjs/table-header": "off",
|
|
932
935
|
"sonarjs/no-implicit-global": "off",
|
|
933
936
|
"sonarjs/no-control-regex": "off",
|
|
934
|
-
"no-caller": 2,
|
|
935
|
-
"no-eval": 2,
|
|
936
|
-
"no-octal-escape": 2,
|
|
937
937
|
"curly": 0,
|
|
938
938
|
"@typescript-eslint/lines-around-comment": 0,
|
|
939
939
|
"@typescript-eslint/quotes": 0,
|
package/dist/react.js
CHANGED
|
@@ -32,7 +32,6 @@ export default [
|
|
|
32
32
|
"no-constant-condition": "error",
|
|
33
33
|
"no-control-regex": "error",
|
|
34
34
|
"no-debugger": "error",
|
|
35
|
-
"no-delete-var": "error",
|
|
36
35
|
"no-dupe-args": "error",
|
|
37
36
|
"no-dupe-class-members": "error",
|
|
38
37
|
"no-dupe-else-if": "error",
|
|
@@ -626,6 +625,10 @@ export default [
|
|
|
626
625
|
},
|
|
627
626
|
},
|
|
628
627
|
],
|
|
628
|
+
"no-caller": "error",
|
|
629
|
+
"no-eval": "error",
|
|
630
|
+
"no-delete-var": "error",
|
|
631
|
+
"no-octal-escape": "error",
|
|
629
632
|
"no-duplicate-imports": [
|
|
630
633
|
"error",
|
|
631
634
|
{
|
|
@@ -2298,14 +2301,6 @@ export default [
|
|
|
2298
2301
|
"sonarjs/no-identical-functions": "off",
|
|
2299
2302
|
},
|
|
2300
2303
|
},
|
|
2301
|
-
{
|
|
2302
|
-
rules: {
|
|
2303
|
-
"no-caller": 2,
|
|
2304
|
-
"no-eval": 2,
|
|
2305
|
-
"no-delete-var": 2,
|
|
2306
|
-
"no-octal-escape": 2,
|
|
2307
|
-
},
|
|
2308
|
-
},
|
|
2309
2304
|
{
|
|
2310
2305
|
ignores: [
|
|
2311
2306
|
"**/dist/**/*.*",
|
package/dist/react.json
CHANGED
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"no-constant-condition": "error",
|
|
22
22
|
"no-control-regex": "error",
|
|
23
23
|
"no-debugger": "error",
|
|
24
|
-
"no-delete-var": 2,
|
|
25
24
|
"no-dupe-args": "error",
|
|
26
25
|
"no-dupe-class-members": "error",
|
|
27
26
|
"no-dupe-else-if": "error",
|
|
@@ -615,6 +614,10 @@
|
|
|
615
614
|
}
|
|
616
615
|
}
|
|
617
616
|
],
|
|
617
|
+
"no-caller": "error",
|
|
618
|
+
"no-eval": "error",
|
|
619
|
+
"no-delete-var": "error",
|
|
620
|
+
"no-octal-escape": "error",
|
|
618
621
|
"no-duplicate-imports": [
|
|
619
622
|
"error",
|
|
620
623
|
{
|
|
@@ -929,9 +932,6 @@
|
|
|
929
932
|
"sonarjs/table-header": "off",
|
|
930
933
|
"sonarjs/no-implicit-global": "off",
|
|
931
934
|
"sonarjs/no-control-regex": "off",
|
|
932
|
-
"no-caller": 2,
|
|
933
|
-
"no-eval": 2,
|
|
934
|
-
"no-octal-escape": 2,
|
|
935
935
|
"curly": 0,
|
|
936
936
|
"@typescript-eslint/lines-around-comment": 0,
|
|
937
937
|
"@typescript-eslint/quotes": 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/eslint-config",
|
|
3
|
-
"version": "11.55.0-alpha.
|
|
3
|
+
"version": "11.55.0-alpha.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "GoodData",
|
|
6
6
|
"repository": {
|
|
@@ -147,13 +147,13 @@
|
|
|
147
147
|
"eslint-plugin-testing-library": "7.16.2",
|
|
148
148
|
"globals": "17.2.0",
|
|
149
149
|
"jiti": "2.6.1",
|
|
150
|
-
"oxfmt": "0.
|
|
150
|
+
"oxfmt": "0.66.0",
|
|
151
151
|
"react": "19.1.1",
|
|
152
152
|
"react-dom": "19.1.1",
|
|
153
153
|
"storybook": "^10.5.6",
|
|
154
154
|
"typescript": "5.9.3",
|
|
155
155
|
"vite-node": "5.3.0",
|
|
156
|
-
"@gooddata/lint-config": "11.55.0-alpha.
|
|
156
|
+
"@gooddata/lint-config": "11.55.0-alpha.5"
|
|
157
157
|
},
|
|
158
158
|
"peerDependencies": {
|
|
159
159
|
"@typescript-eslint/eslint-plugin": "8.58.0",
|