@alextheman/eslint-plugin 1.2.12 → 1.3.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.cjs +3498 -3479
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +1552 -1535
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alextheman/eslint-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "vitest run",
|
|
12
12
|
"test-watch": "vitest",
|
|
13
|
-
"format": "npm run build && prettier --write --parser typescript 'src/**/*.ts' 'tests/**/*.ts'
|
|
14
|
-
"lint": "npm run build && ESLINT_MODE=lint eslint
|
|
13
|
+
"format": "npm run build && prettier --write --parser typescript 'src/**/*.ts' 'tests/**/*.ts' && ESLINT_MODE=fix eslint --fix 'src/**/*.ts' 'tests/**/*.ts'",
|
|
14
|
+
"lint": "npm run build && ESLINT_MODE=lint eslint 'src/**/*.ts' 'tests/**/*.ts' && prettier --check --parser typescript 'src/**/*.ts' 'tests/**/*.ts'",
|
|
15
15
|
"update-dependencies": "npx npm-check-updates -u && npm install",
|
|
16
16
|
"prepare": "husky",
|
|
17
17
|
"build": "tsup",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/eslint": "^9.6.1",
|
|
41
|
-
"@types/node": "^24.
|
|
42
|
-
"@typescript-eslint/rule-tester": "^8.39.
|
|
43
|
-
"@typescript-eslint/utils": "^8.39.
|
|
41
|
+
"@types/node": "^24.3.0",
|
|
42
|
+
"@typescript-eslint/rule-tester": "^8.39.1",
|
|
43
|
+
"@typescript-eslint/utils": "^8.39.1",
|
|
44
44
|
"eslint-plugin-eslint-plugin": "^7.0.0",
|
|
45
45
|
"globals": "^16.3.0",
|
|
46
46
|
"husky": "^9.1.7",
|
|
@@ -52,6 +52,6 @@
|
|
|
52
52
|
"vitest": "^3.2.4"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@alextheman/utility": "^1.
|
|
55
|
+
"@alextheman/utility": "^1.11.2"
|
|
56
56
|
}
|
|
57
57
|
}
|