@alextheman/eslint-plugin 1.8.0 → 1.8.2
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.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/package.json +16 -16
package/dist/index.cjs
CHANGED
|
@@ -3706,7 +3706,7 @@ module.exports = __toCommonJS(index_exports);
|
|
|
3706
3706
|
|
|
3707
3707
|
// package.json
|
|
3708
3708
|
var name = "@alextheman/eslint-plugin";
|
|
3709
|
-
var version = "1.8.
|
|
3709
|
+
var version = "1.8.2";
|
|
3710
3710
|
|
|
3711
3711
|
// src/configs/alexPluginBase.ts
|
|
3712
3712
|
function createAlexPluginBaseConfig(plugin2) {
|
|
@@ -4054,7 +4054,7 @@ var rules_default = {
|
|
|
4054
4054
|
// src/index.ts
|
|
4055
4055
|
if (process.env.ESLINT_MODE) {
|
|
4056
4056
|
console.warn(
|
|
4057
|
-
"ESLINT_MODE is now deprecated. Please use eslint --fix --
|
|
4057
|
+
"ESLINT_MODE is now deprecated. Please use eslint --fix --suppress-all when running the fixer instead."
|
|
4058
4058
|
);
|
|
4059
4059
|
}
|
|
4060
4060
|
var plugin = {
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3692,7 +3692,7 @@ var require_globals2 = __commonJS({
|
|
|
3692
3692
|
|
|
3693
3693
|
// package.json
|
|
3694
3694
|
var name = "@alextheman/eslint-plugin";
|
|
3695
|
-
var version = "1.8.
|
|
3695
|
+
var version = "1.8.2";
|
|
3696
3696
|
|
|
3697
3697
|
// src/configs/alexPluginBase.ts
|
|
3698
3698
|
function createAlexPluginBaseConfig(plugin2) {
|
|
@@ -4040,7 +4040,7 @@ var rules_default = {
|
|
|
4040
4040
|
// src/index.ts
|
|
4041
4041
|
if (process.env.ESLINT_MODE) {
|
|
4042
4042
|
console.warn(
|
|
4043
|
-
"ESLINT_MODE is now deprecated. Please use eslint --fix --
|
|
4043
|
+
"ESLINT_MODE is now deprecated. Please use eslint --fix --suppress-all when running the fixer instead."
|
|
4044
4044
|
);
|
|
4045
4045
|
}
|
|
4046
4046
|
var plugin = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alextheman/eslint-plugin",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,9 +10,9 @@
|
|
|
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\" && eslint --fix --
|
|
14
|
-
"lint": "npm run build && eslint \"src/**/*.ts\" \"tests/**/*.ts\" && prettier --check --parser typescript \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
15
|
-
"update-dependencies": "npx npm-check-updates -u && npm install",
|
|
13
|
+
"format": "npm run build && prettier --write --parser typescript \"src/**/*.ts\" \"tests/**/*.ts\" && eslint --fix --suppress-all \"src/**/*.ts\" \"tests/**/*.ts\" && rm -f eslint-suppressions.json",
|
|
14
|
+
"lint": "npm run build && tsc --noEmit && eslint \"src/**/*.ts\" \"tests/**/*.ts\" && prettier --check --parser typescript \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
15
|
+
"update-dependencies": "bash -c 'npx npm-check-updates -u \"$@\" && npm install' --",
|
|
16
16
|
"prepare": "husky",
|
|
17
17
|
"build": "tsup",
|
|
18
18
|
"change-major": "npm version major -m \"Change version number to v%s\"",
|
|
@@ -24,24 +24,24 @@
|
|
|
24
24
|
"license": "ISC",
|
|
25
25
|
"type": "module",
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@typescript-eslint/eslint-plugin": "
|
|
28
|
-
"@typescript-eslint/parser": "
|
|
29
|
-
"eslint": "
|
|
30
|
-
"eslint-config-prettier": "
|
|
31
|
-
"eslint-import-resolver-typescript": "
|
|
32
|
-
"eslint-plugin-import": "
|
|
27
|
+
"@typescript-eslint/eslint-plugin": "^8.37.0",
|
|
28
|
+
"@typescript-eslint/parser": "^8.37.0",
|
|
29
|
+
"eslint": "^9.31.0",
|
|
30
|
+
"eslint-config-prettier": "^10.1.8",
|
|
31
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
32
|
+
"eslint-plugin-import": "^2.32.0",
|
|
33
33
|
"eslint-plugin-perfectionist": "^4.15.0",
|
|
34
|
-
"eslint-plugin-prettier": "
|
|
35
|
-
"eslint-plugin-react": "
|
|
36
|
-
"eslint-plugin-react-hooks": "
|
|
37
|
-
"eslint-plugin-react-refresh": "
|
|
34
|
+
"eslint-plugin-prettier": "^5.5.3",
|
|
35
|
+
"eslint-plugin-react": "^7.37.5",
|
|
36
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
37
|
+
"eslint-plugin-react-refresh": "^0.4.20"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/common-tags": "^1.8.4",
|
|
41
41
|
"@types/eslint": "^9.6.1",
|
|
42
42
|
"@types/node": "^24.3.0",
|
|
43
|
-
"@typescript-eslint/rule-tester": "^8.
|
|
44
|
-
"@typescript-eslint/utils": "^8.
|
|
43
|
+
"@typescript-eslint/rule-tester": "^8.41.0",
|
|
44
|
+
"@typescript-eslint/utils": "^8.41.0",
|
|
45
45
|
"eslint-plugin-eslint-plugin": "^7.0.0",
|
|
46
46
|
"globals": "^16.3.0",
|
|
47
47
|
"husky": "^9.1.7",
|