eslint-config-silverwind 94.3.1 → 94.4.0
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/index.js +26 -0
- package/dist/index.json +70 -0
- package/package.json +6 -4
package/dist/index.js
CHANGED
|
@@ -9,6 +9,7 @@ import sonarjs from "eslint-plugin-sonarjs";
|
|
|
9
9
|
import unicorn from "eslint-plugin-unicorn";
|
|
10
10
|
import vitest from "eslint-plugin-vitest";
|
|
11
11
|
import playwright from "eslint-plugin-playwright";
|
|
12
|
+
import github from "eslint-plugin-github";
|
|
12
13
|
import globals from "globals";
|
|
13
14
|
import { deepMerge } from "deepie-merge";
|
|
14
15
|
import vitestGlobalsPlugin from "eslint-plugin-vitest-globals";
|
|
@@ -34,6 +35,7 @@ const eslintrc = {
|
|
|
34
35
|
"@eslint-community/eslint-plugin-eslint-comments",
|
|
35
36
|
"@stylistic/eslint-plugin-js",
|
|
36
37
|
"eslint-plugin-array-func",
|
|
38
|
+
"eslint-plugin-github",
|
|
37
39
|
"eslint-plugin-import",
|
|
38
40
|
"eslint-plugin-no-use-extend-native",
|
|
39
41
|
"eslint-plugin-regexp",
|
|
@@ -273,6 +275,29 @@ const eslintrc = {
|
|
|
273
275
|
"func-names": [0],
|
|
274
276
|
"func-style": [0],
|
|
275
277
|
"getter-return": [2],
|
|
278
|
+
"github/a11y-aria-label-is-well-formatted": [0],
|
|
279
|
+
"github/a11y-no-title-attribute": [0],
|
|
280
|
+
"github/a11y-no-visually-hidden-interactive-element": [0],
|
|
281
|
+
"github/a11y-role-supports-aria-props": [0],
|
|
282
|
+
"github/a11y-svg-has-accessible-name": [0],
|
|
283
|
+
"github/array-foreach": [0],
|
|
284
|
+
"github/async-currenttarget": [2],
|
|
285
|
+
"github/async-preventdefault": [2],
|
|
286
|
+
"github/authenticity-token": [0],
|
|
287
|
+
"github/get-attribute": [0],
|
|
288
|
+
"github/js-class-name": [0],
|
|
289
|
+
"github/no-blur": [0],
|
|
290
|
+
"github/no-d-none": [0],
|
|
291
|
+
"github/no-dataset": [2],
|
|
292
|
+
"github/no-dynamic-script-tag": [2],
|
|
293
|
+
"github/no-implicit-buggy-globals": [2],
|
|
294
|
+
"github/no-inner-html": [0],
|
|
295
|
+
"github/no-innerText": [2],
|
|
296
|
+
"github/no-then": [2],
|
|
297
|
+
"github/no-useless-passive": [2],
|
|
298
|
+
"github/prefer-observers": [2],
|
|
299
|
+
"github/require-passive-events": [2],
|
|
300
|
+
"github/unescaped-html-literal": [0],
|
|
276
301
|
"grouped-accessor-pairs": [2],
|
|
277
302
|
"guard-for-in": [0],
|
|
278
303
|
"import/consistent-type-specifier-style": [0],
|
|
@@ -795,6 +820,7 @@ const common = {
|
|
|
795
820
|
regexp,
|
|
796
821
|
sonarjs,
|
|
797
822
|
unicorn,
|
|
823
|
+
github,
|
|
798
824
|
"validate-jsx-nesting": validateJsxNesting
|
|
799
825
|
},
|
|
800
826
|
settings: {
|
package/dist/index.json
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"@eslint-community/eslint-plugin-eslint-comments",
|
|
6
6
|
"@stylistic/eslint-plugin-js",
|
|
7
7
|
"eslint-plugin-array-func",
|
|
8
|
+
"eslint-plugin-github",
|
|
8
9
|
"eslint-plugin-import",
|
|
9
10
|
"eslint-plugin-no-use-extend-native",
|
|
10
11
|
"eslint-plugin-regexp",
|
|
@@ -704,6 +705,75 @@
|
|
|
704
705
|
"getter-return": [
|
|
705
706
|
2
|
|
706
707
|
],
|
|
708
|
+
"github/a11y-aria-label-is-well-formatted": [
|
|
709
|
+
0
|
|
710
|
+
],
|
|
711
|
+
"github/a11y-no-title-attribute": [
|
|
712
|
+
0
|
|
713
|
+
],
|
|
714
|
+
"github/a11y-no-visually-hidden-interactive-element": [
|
|
715
|
+
0
|
|
716
|
+
],
|
|
717
|
+
"github/a11y-role-supports-aria-props": [
|
|
718
|
+
0
|
|
719
|
+
],
|
|
720
|
+
"github/a11y-svg-has-accessible-name": [
|
|
721
|
+
0
|
|
722
|
+
],
|
|
723
|
+
"github/array-foreach": [
|
|
724
|
+
0
|
|
725
|
+
],
|
|
726
|
+
"github/async-currenttarget": [
|
|
727
|
+
2
|
|
728
|
+
],
|
|
729
|
+
"github/async-preventdefault": [
|
|
730
|
+
2
|
|
731
|
+
],
|
|
732
|
+
"github/authenticity-token": [
|
|
733
|
+
0
|
|
734
|
+
],
|
|
735
|
+
"github/get-attribute": [
|
|
736
|
+
0
|
|
737
|
+
],
|
|
738
|
+
"github/js-class-name": [
|
|
739
|
+
0
|
|
740
|
+
],
|
|
741
|
+
"github/no-blur": [
|
|
742
|
+
0
|
|
743
|
+
],
|
|
744
|
+
"github/no-d-none": [
|
|
745
|
+
0
|
|
746
|
+
],
|
|
747
|
+
"github/no-dataset": [
|
|
748
|
+
2
|
|
749
|
+
],
|
|
750
|
+
"github/no-dynamic-script-tag": [
|
|
751
|
+
2
|
|
752
|
+
],
|
|
753
|
+
"github/no-implicit-buggy-globals": [
|
|
754
|
+
2
|
|
755
|
+
],
|
|
756
|
+
"github/no-inner-html": [
|
|
757
|
+
0
|
|
758
|
+
],
|
|
759
|
+
"github/no-innerText": [
|
|
760
|
+
2
|
|
761
|
+
],
|
|
762
|
+
"github/no-then": [
|
|
763
|
+
2
|
|
764
|
+
],
|
|
765
|
+
"github/no-useless-passive": [
|
|
766
|
+
2
|
|
767
|
+
],
|
|
768
|
+
"github/prefer-observers": [
|
|
769
|
+
2
|
|
770
|
+
],
|
|
771
|
+
"github/require-passive-events": [
|
|
772
|
+
2
|
|
773
|
+
],
|
|
774
|
+
"github/unescaped-html-literal": [
|
|
775
|
+
0
|
|
776
|
+
],
|
|
707
777
|
"grouped-accessor-pairs": [
|
|
708
778
|
2
|
|
709
779
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-silverwind",
|
|
3
|
-
"version": "94.
|
|
3
|
+
"version": "94.4.0",
|
|
4
4
|
"description": "Exhaustive ESLint configuration",
|
|
5
5
|
"author": "silverwind <me@silverwind.io>",
|
|
6
6
|
"repository": "silverwind/eslint-config-silverwind",
|
|
@@ -21,17 +21,18 @@
|
|
|
21
21
|
"@stylistic/eslint-plugin-jsx": "2.11.0",
|
|
22
22
|
"@typescript-eslint/parser": "8.17.0",
|
|
23
23
|
"deepie-merge": "1.3.0",
|
|
24
|
-
"eslint-config-silverwind-react": "32.0.
|
|
24
|
+
"eslint-config-silverwind-react": "32.0.5",
|
|
25
25
|
"eslint-config-silverwind-typescript": "9.2.1",
|
|
26
26
|
"eslint-import-resolver-typescript": "3.7.0",
|
|
27
27
|
"eslint-plugin-array-func": "4.0.0",
|
|
28
28
|
"eslint-plugin-deprecation": "3.0.0",
|
|
29
|
+
"eslint-plugin-github": "5.1.4",
|
|
29
30
|
"eslint-plugin-import": "2.31.0",
|
|
30
31
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
31
32
|
"eslint-plugin-no-use-extend-native": "0.5.0",
|
|
32
33
|
"eslint-plugin-playwright": "2.1.0",
|
|
33
34
|
"eslint-plugin-react": "7.37.2",
|
|
34
|
-
"eslint-plugin-react-hooks": "5.
|
|
35
|
+
"eslint-plugin-react-hooks": "5.1.0",
|
|
35
36
|
"eslint-plugin-react-refresh": "0.4.16",
|
|
36
37
|
"eslint-plugin-regexp": "2.7.0",
|
|
37
38
|
"eslint-plugin-sonarjs": "1.0.4",
|
|
@@ -45,10 +46,11 @@
|
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@types/eslint": "9.6.1",
|
|
49
|
+
"@types/eslint-plugin-jsx-a11y": "6.10.0",
|
|
48
50
|
"@types/node": "22.10.1",
|
|
49
51
|
"eslint": "8.57.1",
|
|
50
52
|
"typescript": "5.7.2",
|
|
51
|
-
"typescript-config-silverwind": "6.1.
|
|
53
|
+
"typescript-config-silverwind": "6.1.3",
|
|
52
54
|
"updates": "16.4.0",
|
|
53
55
|
"versions": "12.1.2",
|
|
54
56
|
"vite": "5.4.11",
|