@ivanmaxlogiudice/eslint-config 3.1.4 → 3.1.6

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/cli.js CHANGED
@@ -15,8 +15,8 @@ import { execSync } from "node:child_process";
15
15
  //#region package.json
16
16
  var name = "@ivanmaxlogiudice/eslint-config";
17
17
  var type = "module";
18
- var version = "3.1.4";
19
- var packageManager = "bun@1.2.15";
18
+ var version = "3.1.6";
19
+ var packageManager = "bun@1.2.18";
20
20
  var description = "Personal ESLint config";
21
21
  var license = "MIT";
22
22
  var homepage = "https://github.com/ivanmaxlogiudice/eslint-config#readme";
@@ -61,54 +61,51 @@ var dependencies = {
61
61
  "@antfu/install-pkg": "^1.1.0",
62
62
  "@clack/prompts": "^0.11.0",
63
63
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
64
- "@eslint/markdown": "^6.4.0",
64
+ "@eslint/markdown": "^7.0.0",
65
65
  "@ivanmaxlogiudice/gitignore": "^0.0.2",
66
- "@stylistic/eslint-plugin": "^4.4.1",
67
- "@typescript-eslint/eslint-plugin": "^8.33.1",
68
- "@typescript-eslint/parser": "^8.33.1",
69
- "@vitest/eslint-plugin": "^1.2.1",
66
+ "@stylistic/eslint-plugin": "^5.2.0",
67
+ "@typescript-eslint/eslint-plugin": "^8.37.0",
68
+ "@typescript-eslint/parser": "^8.37.0",
69
+ "@vitest/eslint-plugin": "^1.3.4",
70
70
  "ansis": "^4.1.0",
71
71
  "cac": "^6.7.14",
72
72
  "eslint-plugin-antfu": "^3.1.1",
73
- "eslint-plugin-import-x": "^4.15.0",
74
- "eslint-plugin-jsdoc": "^50.7.1",
73
+ "eslint-plugin-import-lite": "^0.3.0",
74
+ "eslint-plugin-jsdoc": "^51.4.1",
75
75
  "eslint-plugin-jsonc": "^2.20.1",
76
- "eslint-plugin-n": "^17.19.0",
76
+ "eslint-plugin-n": "^17.21.0",
77
77
  "eslint-plugin-no-only-tests": "^3.3.0",
78
- "eslint-plugin-perfectionist": "^4.14.0",
78
+ "eslint-plugin-perfectionist": "^4.15.0",
79
79
  "eslint-plugin-unicorn": "^59.0.1",
80
80
  "eslint-plugin-unused-imports": "^4.1.4",
81
- "eslint-plugin-vue": "^10.1.0",
82
- "globals": "^16.2.0",
81
+ "eslint-plugin-vue": "^10.3.0",
82
+ "globals": "^16.3.0",
83
83
  "jsonc-eslint-parser": "^2.4.0",
84
84
  "local-pkg": "^1.1.1",
85
- "tsdown": "^0.12.6",
86
- "vue-eslint-parser": "^10.1.3"
85
+ "tsdown": "^0.12.9",
86
+ "vue-eslint-parser": "^10.2.0"
87
87
  };
88
88
  var devDependencies = {
89
- "@eslint/config-inspector": "^1.0.2",
90
- "@types/node": "^22.15.29",
91
- "@unocss/eslint-plugin": "^66.1.3",
92
- "bumpp": "^10.1.1",
93
- "bun-types": "^1.2.15",
94
- "eslint": "^9.28.0",
89
+ "@eslint/config-inspector": "^1.1.0",
90
+ "@types/node": "^24.0.14",
91
+ "@unocss/eslint-plugin": "^66.3.3",
92
+ "bumpp": "^10.2.0",
93
+ "bun-types": "^1.2.18",
94
+ "eslint": "^9.31.0",
95
95
  "eslint-plugin-markdown": "^5.1.0",
96
- "eslint-plugin-regexp": "^2.8.0",
96
+ "eslint-plugin-regexp": "^2.9.0",
97
97
  "eslint-plugin-yml": "^1.18.0",
98
- "eslint-typegen": "^2.2.0",
99
- "lint-staged": "^16.1.0",
98
+ "eslint-typegen": "^2.2.1",
99
+ "nano-staged": "^0.8.0",
100
100
  "simple-git-hooks": "^2.13.0",
101
101
  "typescript": "^5.8.3",
102
102
  "unbuild": "^3.5.0",
103
- "vitest": "^3.2.1",
103
+ "vitest": "^3.2.4",
104
104
  "yaml-eslint-parser": "^1.3.0"
105
105
  };
106
- var resolutions = {
107
- "@types/mdast": "^4.0.4",
108
- "eslint": "^9.28.0"
109
- };
110
- var simple_git_hooks = { "pre-commit": "npx lint-staged" };
111
- var lint_staged = { "*": "eslint --fix" };
106
+ var resolutions = { "eslint": "^9.31.0" };
107
+ var simple_git_hooks = { "pre-commit": "./node_modules/.bin/nano-staged" };
108
+ var nano_staged = { "*": "eslint --fix" };
112
109
  var package_default = {
113
110
  name,
114
111
  type,
@@ -133,7 +130,7 @@ var package_default = {
133
130
  devDependencies,
134
131
  resolutions,
135
132
  "simple-git-hooks": simple_git_hooks,
136
- "lint-staged": lint_staged
133
+ "nano-staged": nano_staged
137
134
  };
138
135
 
139
136
  //#endregion