@alextheman/eslint-plugin 1.0.17 → 1.0.18
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 +2 -2
- package/dist/index.js +2 -2
- package/package.json +8 -8
package/dist/index.cjs
CHANGED
|
@@ -37,9 +37,9 @@ module.exports = __toCommonJS(index_exports);
|
|
|
37
37
|
|
|
38
38
|
// package.json
|
|
39
39
|
var name = "@alextheman/eslint-plugin";
|
|
40
|
-
var version = "1.0.
|
|
40
|
+
var version = "1.0.18";
|
|
41
41
|
|
|
42
|
-
// create-rule.ts
|
|
42
|
+
// src/create-rule.ts
|
|
43
43
|
var import_utils = require("@typescript-eslint/utils");
|
|
44
44
|
var createRule = import_utils.ESLintUtils.RuleCreator((ruleName) => {
|
|
45
45
|
return `https://github.com/AlexMan123456/eslint-plugin/${ruleName}`;
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// package.json
|
|
2
2
|
var name = "@alextheman/eslint-plugin";
|
|
3
|
-
var version = "1.0.
|
|
3
|
+
var version = "1.0.18";
|
|
4
4
|
|
|
5
|
-
// create-rule.ts
|
|
5
|
+
// src/create-rule.ts
|
|
6
6
|
import { ESLintUtils } from "@typescript-eslint/utils";
|
|
7
7
|
var createRule = ESLintUtils.RuleCreator((ruleName) => {
|
|
8
8
|
return `https://github.com/AlexMan123456/eslint-plugin/${ruleName}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alextheman/eslint-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -8,9 +8,10 @@
|
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"test": "
|
|
12
|
-
"
|
|
13
|
-
"
|
|
11
|
+
"test": "vitest run",
|
|
12
|
+
"test-watch": "vitest",
|
|
13
|
+
"format": "prettier --write --parser typescript 'src/**/*.ts' 'tests/**/*.ts' && ESLINT_MODE=fix eslint --fix 'src/**/*.ts' 'tests/**/*.ts'",
|
|
14
|
+
"lint": "ESLINT_MODE=lint eslint 'src/**/*.ts' 'tests/**/*.ts' && prettier --check --parser typescript 'src/**/*.ts' 'tests/**/*.ts'",
|
|
14
15
|
"update-dependencies": "npx npm-check-updates -u && npm install",
|
|
15
16
|
"prepare": "husky",
|
|
16
17
|
"build": "tsup",
|
|
@@ -31,7 +32,6 @@
|
|
|
31
32
|
},
|
|
32
33
|
"devDependencies": {
|
|
33
34
|
"@types/eslint": "^9.6.1",
|
|
34
|
-
"@types/jest": "^30.0.0",
|
|
35
35
|
"@types/node": "^24.0.14",
|
|
36
36
|
"@typescript-eslint/rule-tester": "^8.37.0",
|
|
37
37
|
"@typescript-eslint/utils": "^8.37.0",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"eslint-plugin-eslint-plugin": "^6.5.0",
|
|
40
40
|
"globals": "^16.3.0",
|
|
41
41
|
"husky": "^9.1.7",
|
|
42
|
-
"jest": "^30.0.4",
|
|
43
42
|
"prettier": "^3.6.2",
|
|
44
|
-
"ts-jest": "^29.4.0",
|
|
45
43
|
"tsup": "^8.5.0",
|
|
46
|
-
"typescript": "^5.8.3"
|
|
44
|
+
"typescript": "^5.8.3",
|
|
45
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
46
|
+
"vitest": "^3.2.4"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@alextheman/utility": "^1.5.2"
|