@lntvow/eslint-config 9.28.8 → 9.29.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 +5 -1
  2. package/package.json +5 -6
package/dist/index.d.ts CHANGED
@@ -4862,6 +4862,7 @@ type AccessorPairs = []|[{
4862
4862
  getWithoutSet?: boolean
4863
4863
  setWithoutGet?: boolean
4864
4864
  enforceForClassMembers?: boolean
4865
+ enforceForTSTypes?: boolean
4865
4866
  }]
4866
4867
  // ----- array-bracket-newline -----
4867
4868
  type ArrayBracketNewline = []|[(("always" | "never" | "consistent") | {
@@ -5052,7 +5053,9 @@ type GetterReturn = []|[{
5052
5053
  allowImplicit?: boolean
5053
5054
  }]
5054
5055
  // ----- grouped-accessor-pairs -----
5055
- type GroupedAccessorPairs = []|[("anyOrder" | "getBeforeSet" | "setBeforeGet")]
5056
+ type GroupedAccessorPairs = []|[("anyOrder" | "getBeforeSet" | "setBeforeGet")]|[("anyOrder" | "getBeforeSet" | "setBeforeGet"), {
5057
+ enforceForTSTypes?: boolean
5058
+ }]
5056
5059
  // ----- handle-callback-err -----
5057
5060
  type HandleCallbackErr = []|[string]
5058
5061
  // ----- id-blacklist -----
@@ -6251,6 +6254,7 @@ type NoUnusedVars = []|[(("all" | "local") | {
6251
6254
  caughtErrorsIgnorePattern?: string
6252
6255
  destructuredArrayIgnorePattern?: string
6253
6256
  ignoreClassWithStaticInitBlock?: boolean
6257
+ ignoreUsingDeclarations?: boolean
6254
6258
  reportUsedIgnorePattern?: boolean
6255
6259
  })]
6256
6260
  // ----- no-use-before-define -----
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lntvow/eslint-config",
3
- "version": "9.28.8",
3
+ "version": "9.29.0",
4
4
  "type": "module",
5
5
  "description": "Customizable eslint configuration",
6
6
  "keywords": [
@@ -32,7 +32,7 @@
32
32
  "dependencies": {
33
33
  "@eslint/compat": "^1.2.7",
34
34
  "@eslint/js": "^9.23.0",
35
- "@lntvow/utils": "^4.3.0",
35
+ "@lntvow/utils": "^4.3.1",
36
36
  "@stylistic/eslint-plugin": "^2.10.1",
37
37
  "eslint-config-prettier": "^10.1.1",
38
38
  "eslint-flat-config-utils": "^0.4.0",
@@ -47,12 +47,12 @@
47
47
  "local-pkg": "^0.5.0",
48
48
  "typescript-eslint": "^8.28.0",
49
49
  "vue-eslint-parser": "^9.4.3",
50
- "@lntvow/eslint-plugin": "^9.28.8"
50
+ "@lntvow/eslint-plugin": "^9.29.0"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@commitlint/cli": "^19.8.1",
54
54
  "@commitlint/config-conventional": "^19.8.1",
55
- "@lntvow/eslint-config": "^9.28.7",
55
+ "@lntvow/eslint-config": "^9.28.8",
56
56
  "@types/estree": "^1.0.8",
57
57
  "@types/node": "^22.15.32",
58
58
  "axios": "^1.10.0",
@@ -60,7 +60,7 @@
60
60
  "cheerio": "1.1.0",
61
61
  "commitizen": "^4.3.1",
62
62
  "cz-conventional-changelog": "^3.3.0",
63
- "eslint": "^9.31.0",
63
+ "eslint": "^9.32.0",
64
64
  "eslint-typegen": "^2.2.0",
65
65
  "lint-staged": "^16.1.2",
66
66
  "node-cron": "^4.1.0",
@@ -73,7 +73,6 @@
73
73
  "unbuild": "^3.5.0"
74
74
  },
75
75
  "scripts": {
76
- "postinstall": "simple-git-hooks",
77
76
  "rimraf": "rimraf ./node_modules/ && pnpm -r rimraf",
78
77
  "ncu": "ncu -u -f @lntvow/* && pnpm install",
79
78
  "commit": "git add . && git-cz && pnpm release -y",