@lntvow/eslint-config 9.31.1 → 9.32.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +12 -3
  2. package/package.json +10 -9
package/dist/index.d.ts CHANGED
@@ -6816,10 +6816,18 @@ type NoRestrictedExports = []|[({
6816
6816
  }
6817
6817
  })]
6818
6818
  // ----- no-restricted-globals -----
6819
- type NoRestrictedGlobals = (string | {
6819
+ type NoRestrictedGlobals = ((string | {
6820
6820
  name: string
6821
6821
  message?: string
6822
- })[]
6822
+ })[] | []|[{
6823
+
6824
+ globals: (string | {
6825
+ name: string
6826
+ message?: string
6827
+ })[]
6828
+ checkGlobalObject?: boolean
6829
+ globalObjects?: string[]
6830
+ }])
6823
6831
  // ----- no-restricted-imports -----
6824
6832
  type NoRestrictedImports = ((string | {
6825
6833
  name: string
@@ -7048,6 +7056,8 @@ type OneVar = []|[(("always" | "never" | "consecutive") | {
7048
7056
  var?: ("always" | "never" | "consecutive")
7049
7057
  let?: ("always" | "never" | "consecutive")
7050
7058
  const?: ("always" | "never" | "consecutive")
7059
+ using?: ("always" | "never" | "consecutive")
7060
+ awaitUsing?: ("always" | "never" | "consecutive")
7051
7061
  } | {
7052
7062
  initialized?: ("always" | "never" | "consecutive")
7053
7063
  uninitialized?: ("always" | "never" | "consecutive")
@@ -7142,7 +7152,6 @@ type PrettierPrettier = []|[{
7142
7152
  fileInfoOptions?: {
7143
7153
  [k: string]: unknown | undefined
7144
7154
  }
7145
- [k: string]: unknown | undefined
7146
7155
  }]
7147
7156
  // ----- quote-props -----
7148
7157
  type QuoteProps = ([]|[("always" | "as-needed" | "consistent" | "consistent-as-needed")] | []|[("always" | "as-needed" | "consistent" | "consistent-as-needed")]|[("always" | "as-needed" | "consistent" | "consistent-as-needed"), {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lntvow/eslint-config",
3
- "version": "9.31.1",
3
+ "version": "9.32.0",
4
4
  "type": "module",
5
5
  "description": "Customizable eslint configuration",
6
6
  "keywords": [
@@ -29,14 +29,14 @@
29
29
  "prettier": ">=3.1.0"
30
30
  },
31
31
  "dependencies": {
32
- "@eslint/compat": "^1.3.1",
32
+ "@eslint/compat": "^1.3.2",
33
33
  "@eslint/js": "^9.32.0",
34
- "@lntvow/utils": "^4.5.19",
34
+ "@lntvow/utils": "^4.5.20",
35
35
  "@stylistic/eslint-plugin": "^5.2.2",
36
36
  "eslint-config-prettier": "^10.1.8",
37
37
  "eslint-flat-config-utils": "^2.1.1",
38
38
  "eslint-plugin-import-x": "^4.16.1",
39
- "eslint-plugin-prettier": "^5.5.3",
39
+ "eslint-plugin-prettier": "^5.5.4",
40
40
  "eslint-plugin-regexp": "^2.9.1",
41
41
  "eslint-plugin-unicorn": "^59.0.0",
42
42
  "eslint-plugin-vitest": "^0.5.4",
@@ -44,9 +44,9 @@
44
44
  "find-up-simple": "^1.0.1",
45
45
  "globals": "^16.3.0",
46
46
  "local-pkg": "^1.1.1",
47
- "typescript-eslint": "^8.39.0",
47
+ "typescript-eslint": "^8.41.0",
48
48
  "vue-eslint-parser": "^9.4.3",
49
- "@lntvow/eslint-plugin": "^9.31.1"
49
+ "@lntvow/eslint-plugin": "^9.32.0"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@commitlint/cli": "^19.8.1",
@@ -54,18 +54,19 @@
54
54
  "@types/estree": "^1.0.8",
55
55
  "@types/node": "^22.15.32",
56
56
  "axios": "^1.11.0",
57
- "bumpp": "^10.2.2",
57
+ "bumpp": "^10.2.3",
58
58
  "cheerio": "1.1.2",
59
59
  "commitizen": "^4.3.1",
60
60
  "cz-conventional-changelog": "^3.3.0",
61
+ "eslint": "^9.34.0",
61
62
  "eslint-typegen": "^2.3.0",
62
- "lint-staged": "^16.1.4",
63
+ "lint-staged": "^16.1.5",
63
64
  "node-cron": "^4.2.1",
64
65
  "npm-run-all": "^4.1.5",
65
66
  "prettier": "^3.6.2",
66
67
  "simple-git-hooks": "^2.13.1",
67
68
  "tsup": "^8.5.0",
68
- "tsx": "^4.20.3",
69
+ "tsx": "^4.20.5",
69
70
  "typescript": "^5.9.2"
70
71
  },
71
72
  "scripts": {