@anolilab/eslint-config 16.2.22 → 16.2.23

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## @anolilab/eslint-config [16.2.23](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@16.2.22...@anolilab/eslint-config@16.2.23) (2025-08-04)
2
+
3
+ ### Bug Fixes
4
+
5
+ * update eslint and related dependencies ([82c3c20](https://github.com/anolilab/javascript-style-guide/commit/82c3c20e67644d5104d3a3005353afe76251156a))
6
+
1
7
  ## @anolilab/eslint-config [16.2.22](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@16.2.21...@anolilab/eslint-config@16.2.22) (2025-07-22)
2
8
 
3
9
  ### Bug Fixes
package/dist/index.d.cts CHANGED
@@ -7083,7 +7083,7 @@ interface RuleOptions {
7083
7083
  * Order of UnoCSS utilities in class attribute
7084
7084
  * @see https://unocss.dev/integrations/eslint#rules
7085
7085
  */
7086
- 'unocss/order'?: Linter.RuleEntry<[]>
7086
+ 'unocss/order'?: Linter.RuleEntry<UnocssOrder>
7087
7087
  /**
7088
7088
  * Order of UnoCSS attributes
7089
7089
  * @see https://unocss.dev/integrations/eslint#rules
@@ -15689,17 +15689,14 @@ type TestingLibraryNoDomImport = []|[string]
15689
15689
  // ----- testing-library/no-node-access -----
15690
15690
  type TestingLibraryNoNodeAccess = []|[{
15691
15691
  allowContainerFirstChild?: boolean
15692
- [k: string]: unknown | undefined
15693
15692
  }]
15694
15693
  // ----- testing-library/no-render-in-lifecycle -----
15695
15694
  type TestingLibraryNoRenderInLifecycle = []|[{
15696
15695
  allowTestingFrameworkSetupHook?: ("beforeEach" | "beforeAll")
15697
- [k: string]: unknown | undefined
15698
15696
  }]
15699
15697
  // ----- testing-library/no-unnecessary-act -----
15700
15698
  type TestingLibraryNoUnnecessaryAct = []|[{
15701
15699
  isStrict?: boolean
15702
- [k: string]: unknown | undefined
15703
15700
  }]
15704
15701
  // ----- testing-library/prefer-explicit-assert -----
15705
15702
  type TestingLibraryPreferExplicitAssert = []|[{
@@ -15716,13 +15713,11 @@ type TestingLibraryPreferQueryMatchers = []|[{
15716
15713
  validEntries?: {
15717
15714
  query?: ("get" | "query")
15718
15715
  matcher?: string
15719
- [k: string]: unknown | undefined
15720
15716
  }[]
15721
15717
  }]
15722
15718
  // ----- testing-library/prefer-user-event -----
15723
15719
  type TestingLibraryPreferUserEvent = []|[{
15724
15720
  allowedMethods?: unknown[]
15725
- [k: string]: unknown | undefined
15726
15721
  }]
15727
15722
  // ----- toml/array-bracket-newline -----
15728
15723
  type TomlArrayBracketNewline = []|[(("always" | "never" | "consistent") | {
@@ -16068,6 +16063,12 @@ type UnocssEnforceClassCompile = []|[{
16068
16063
  prefix?: string
16069
16064
  enableFix?: boolean
16070
16065
  }]
16066
+ // ----- unocss/order -----
16067
+ type UnocssOrder = []|[{
16068
+ unoFunctions?: string[]
16069
+ unoVariables?: string[]
16070
+ [k: string]: unknown | undefined
16071
+ }]
16071
16072
  // ----- vitest/consistent-test-filename -----
16072
16073
  type VitestConsistentTestFilename = []|[{
16073
16074
  pattern?: string
package/dist/index.d.mts CHANGED
@@ -7083,7 +7083,7 @@ interface RuleOptions {
7083
7083
  * Order of UnoCSS utilities in class attribute
7084
7084
  * @see https://unocss.dev/integrations/eslint#rules
7085
7085
  */
7086
- 'unocss/order'?: Linter.RuleEntry<[]>
7086
+ 'unocss/order'?: Linter.RuleEntry<UnocssOrder>
7087
7087
  /**
7088
7088
  * Order of UnoCSS attributes
7089
7089
  * @see https://unocss.dev/integrations/eslint#rules
@@ -15689,17 +15689,14 @@ type TestingLibraryNoDomImport = []|[string]
15689
15689
  // ----- testing-library/no-node-access -----
15690
15690
  type TestingLibraryNoNodeAccess = []|[{
15691
15691
  allowContainerFirstChild?: boolean
15692
- [k: string]: unknown | undefined
15693
15692
  }]
15694
15693
  // ----- testing-library/no-render-in-lifecycle -----
15695
15694
  type TestingLibraryNoRenderInLifecycle = []|[{
15696
15695
  allowTestingFrameworkSetupHook?: ("beforeEach" | "beforeAll")
15697
- [k: string]: unknown | undefined
15698
15696
  }]
15699
15697
  // ----- testing-library/no-unnecessary-act -----
15700
15698
  type TestingLibraryNoUnnecessaryAct = []|[{
15701
15699
  isStrict?: boolean
15702
- [k: string]: unknown | undefined
15703
15700
  }]
15704
15701
  // ----- testing-library/prefer-explicit-assert -----
15705
15702
  type TestingLibraryPreferExplicitAssert = []|[{
@@ -15716,13 +15713,11 @@ type TestingLibraryPreferQueryMatchers = []|[{
15716
15713
  validEntries?: {
15717
15714
  query?: ("get" | "query")
15718
15715
  matcher?: string
15719
- [k: string]: unknown | undefined
15720
15716
  }[]
15721
15717
  }]
15722
15718
  // ----- testing-library/prefer-user-event -----
15723
15719
  type TestingLibraryPreferUserEvent = []|[{
15724
15720
  allowedMethods?: unknown[]
15725
- [k: string]: unknown | undefined
15726
15721
  }]
15727
15722
  // ----- toml/array-bracket-newline -----
15728
15723
  type TomlArrayBracketNewline = []|[(("always" | "never" | "consistent") | {
@@ -16068,6 +16063,12 @@ type UnocssEnforceClassCompile = []|[{
16068
16063
  prefix?: string
16069
16064
  enableFix?: boolean
16070
16065
  }]
16066
+ // ----- unocss/order -----
16067
+ type UnocssOrder = []|[{
16068
+ unoFunctions?: string[]
16069
+ unoVariables?: string[]
16070
+ [k: string]: unknown | undefined
16071
+ }]
16071
16072
  // ----- vitest/consistent-test-filename -----
16072
16073
  type VitestConsistentTestFilename = []|[{
16073
16074
  pattern?: string
package/dist/index.d.ts CHANGED
@@ -7083,7 +7083,7 @@ interface RuleOptions {
7083
7083
  * Order of UnoCSS utilities in class attribute
7084
7084
  * @see https://unocss.dev/integrations/eslint#rules
7085
7085
  */
7086
- 'unocss/order'?: Linter.RuleEntry<[]>
7086
+ 'unocss/order'?: Linter.RuleEntry<UnocssOrder>
7087
7087
  /**
7088
7088
  * Order of UnoCSS attributes
7089
7089
  * @see https://unocss.dev/integrations/eslint#rules
@@ -15689,17 +15689,14 @@ type TestingLibraryNoDomImport = []|[string]
15689
15689
  // ----- testing-library/no-node-access -----
15690
15690
  type TestingLibraryNoNodeAccess = []|[{
15691
15691
  allowContainerFirstChild?: boolean
15692
- [k: string]: unknown | undefined
15693
15692
  }]
15694
15693
  // ----- testing-library/no-render-in-lifecycle -----
15695
15694
  type TestingLibraryNoRenderInLifecycle = []|[{
15696
15695
  allowTestingFrameworkSetupHook?: ("beforeEach" | "beforeAll")
15697
- [k: string]: unknown | undefined
15698
15696
  }]
15699
15697
  // ----- testing-library/no-unnecessary-act -----
15700
15698
  type TestingLibraryNoUnnecessaryAct = []|[{
15701
15699
  isStrict?: boolean
15702
- [k: string]: unknown | undefined
15703
15700
  }]
15704
15701
  // ----- testing-library/prefer-explicit-assert -----
15705
15702
  type TestingLibraryPreferExplicitAssert = []|[{
@@ -15716,13 +15713,11 @@ type TestingLibraryPreferQueryMatchers = []|[{
15716
15713
  validEntries?: {
15717
15714
  query?: ("get" | "query")
15718
15715
  matcher?: string
15719
- [k: string]: unknown | undefined
15720
15716
  }[]
15721
15717
  }]
15722
15718
  // ----- testing-library/prefer-user-event -----
15723
15719
  type TestingLibraryPreferUserEvent = []|[{
15724
15720
  allowedMethods?: unknown[]
15725
- [k: string]: unknown | undefined
15726
15721
  }]
15727
15722
  // ----- toml/array-bracket-newline -----
15728
15723
  type TomlArrayBracketNewline = []|[(("always" | "never" | "consistent") | {
@@ -16068,6 +16063,12 @@ type UnocssEnforceClassCompile = []|[{
16068
16063
  prefix?: string
16069
16064
  enableFix?: boolean
16070
16065
  }]
16066
+ // ----- unocss/order -----
16067
+ type UnocssOrder = []|[{
16068
+ unoFunctions?: string[]
16069
+ unoVariables?: string[]
16070
+ [k: string]: unknown | undefined
16071
+ }]
16071
16072
  // ----- vitest/consistent-test-filename -----
16072
16073
  type VitestConsistentTestFilename = []|[{
16073
16074
  pattern?: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/eslint-config",
3
- "version": "16.2.22",
3
+ "version": "16.2.23",
4
4
  "description": "ESLint shareable config for the Anolilab JavaScript style guide.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -106,10 +106,10 @@
106
106
  "dependencies": {
107
107
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
108
108
  "@eslint/compat": "^1.3.1",
109
- "@eslint/js": "^9.31.0",
109
+ "@eslint/js": "^9.32.0",
110
110
  "@eslint/markdown": "^7.1.0",
111
- "@html-eslint/eslint-plugin": "^0.43.0",
112
- "@html-eslint/parser": "^0.43.0",
111
+ "@html-eslint/eslint-plugin": "^0.44.0",
112
+ "@html-eslint/parser": "^0.44.0",
113
113
  "@stylistic/eslint-plugin": "^5.2.2",
114
114
  "@stylistic/eslint-plugin-ts": "^4.4.1",
115
115
  "@typescript-eslint/parser": "^8.38.0",
@@ -119,7 +119,7 @@
119
119
  "@vitest/eslint-plugin": "^1.3.4",
120
120
  "confusing-browser-globals": "^1.0.11",
121
121
  "eslint-config-flat-gitignore": "^2.1.0",
122
- "eslint-flat-config-utils": "^2.1.0",
122
+ "eslint-flat-config-utils": "^2.1.1",
123
123
  "eslint-import-resolver-node": "^0.3.9",
124
124
  "eslint-import-resolver-typescript": "^4.4.4",
125
125
  "eslint-merge-processors": "^2.0.0",
@@ -128,16 +128,16 @@
128
128
  "eslint-plugin-es-x": "^9.0.0",
129
129
  "eslint-plugin-html": "^8.1.3",
130
130
  "eslint-plugin-import-x": "^4.16.1",
131
- "eslint-plugin-jsdoc": "^51.4.1",
131
+ "eslint-plugin-jsdoc": "^52.0.2",
132
132
  "eslint-plugin-jsonc": "^2.20.1",
133
- "eslint-plugin-n": "^17.21.0",
133
+ "eslint-plugin-n": "^17.21.3",
134
134
  "eslint-plugin-no-for-of-array": "^0.1.0",
135
135
  "eslint-plugin-no-only-tests": "^3.3.0",
136
136
  "eslint-plugin-no-secrets": "^2.2.1",
137
137
  "eslint-plugin-no-unsanitized": "^4.1.2",
138
138
  "eslint-plugin-perfectionist": "^4.15.0",
139
139
  "eslint-plugin-promise": "^7.2.1",
140
- "eslint-plugin-regexp": "^2.9.0",
140
+ "eslint-plugin-regexp": "^2.9.1",
141
141
  "eslint-plugin-security": "^3.0.1",
142
142
  "eslint-plugin-simple-import-sort": "^12.1.1",
143
143
  "eslint-plugin-sonarjs": "^3.0.4",