@abinnovision/eslint-config-base 3.2.2-beta.1 → 3.3.0-beta.1
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/CHANGELOG.md +7 -0
- package/dist/configs/base.cjs +3 -3
- package/dist/configs/base.mjs +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.2.2](https://github.com/abinnovision/js-commons/compare/eslint-config-base-v3.2.1...eslint-config-base-v3.2.2) (2026-03-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* remove lines-around-comment rule to resolve conflicts ([#594](https://github.com/abinnovision/js-commons/issues/594)) ([3414a8e](https://github.com/abinnovision/js-commons/commit/3414a8e76637a84c2e71248b9812b9edc17931b0))
|
|
9
|
+
|
|
3
10
|
## [3.2.1](https://github.com/abinnovision/js-commons/compare/eslint-config-base-v3.2.0...eslint-config-base-v3.2.1) (2026-03-22)
|
|
4
11
|
|
|
5
12
|
|
package/dist/configs/base.cjs
CHANGED
|
@@ -2,8 +2,8 @@ const require_runtime = require("../_virtual/_rolldown/runtime.cjs");
|
|
|
2
2
|
let _eslint_js = require("@eslint/js");
|
|
3
3
|
_eslint_js = require_runtime.__toESM(_eslint_js);
|
|
4
4
|
let eslint_config = require("eslint/config");
|
|
5
|
-
let
|
|
6
|
-
|
|
5
|
+
let eslint_plugin_import_x = require("eslint-plugin-import-x");
|
|
6
|
+
eslint_plugin_import_x = require_runtime.__toESM(eslint_plugin_import_x);
|
|
7
7
|
let eslint_plugin_unused_imports = require("eslint-plugin-unused-imports");
|
|
8
8
|
eslint_plugin_unused_imports = require_runtime.__toESM(eslint_plugin_unused_imports);
|
|
9
9
|
let typescript_eslint = require("typescript-eslint");
|
|
@@ -16,7 +16,7 @@ const config = (0, eslint_config.defineConfig)([{
|
|
|
16
16
|
files: ["**/*.{ts,tsx,js,jsx}"],
|
|
17
17
|
languageOptions: { ecmaVersion: "latest" },
|
|
18
18
|
plugins: {
|
|
19
|
-
import:
|
|
19
|
+
import: eslint_plugin_import_x.default,
|
|
20
20
|
uimports: eslint_plugin_unused_imports.default
|
|
21
21
|
},
|
|
22
22
|
extends: [_eslint_js.default.configs.recommended],
|
package/dist/configs/base.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import jseslint from "@eslint/js";
|
|
2
2
|
import { defineConfig } from "eslint/config";
|
|
3
|
-
import eslintPluginImport from "eslint-plugin-import";
|
|
3
|
+
import eslintPluginImport from "eslint-plugin-import-x";
|
|
4
4
|
import unusedImports from "eslint-plugin-unused-imports";
|
|
5
5
|
import tseslint from "typescript-eslint";
|
|
6
6
|
//#region src/configs/base.ts
|
package/package.json
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abinnovision/eslint-config-base",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"publishConfig": {
|
|
5
|
-
"npm": true,
|
|
6
|
-
"ghpr": true,
|
|
7
|
-
"npmAccess": "public"
|
|
8
|
-
},
|
|
9
|
-
"type": "module",
|
|
3
|
+
"version": "3.3.0-beta.1",
|
|
10
4
|
"repository": {
|
|
11
5
|
"url": "https://github.com/abinnovision/js-commons"
|
|
12
6
|
},
|
|
@@ -16,6 +10,7 @@
|
|
|
16
10
|
"email": "info@abigroup.io",
|
|
17
11
|
"url": "https://abigroup.io/"
|
|
18
12
|
},
|
|
13
|
+
"type": "module",
|
|
19
14
|
"exports": {
|
|
20
15
|
".": {
|
|
21
16
|
"import": {
|
|
@@ -51,10 +46,10 @@
|
|
|
51
46
|
},
|
|
52
47
|
"prettier": "@abinnovision/prettier-config",
|
|
53
48
|
"dependencies": {
|
|
54
|
-
"@eslint/js": "^
|
|
49
|
+
"@eslint/js": "^10.0.0",
|
|
55
50
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
56
51
|
"@vitest/eslint-plugin": "^1.6.9",
|
|
57
|
-
"eslint-plugin-import": "^
|
|
52
|
+
"eslint-plugin-import-x": "^4.16.2",
|
|
58
53
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
59
54
|
"globals": "^17.3.0",
|
|
60
55
|
"typescript-eslint": "^8.56.0"
|
|
@@ -62,12 +57,17 @@
|
|
|
62
57
|
"devDependencies": {
|
|
63
58
|
"@abinnovision/prettier-config": "^2.1.5",
|
|
64
59
|
"@internal/tsconfig": "^1.0.0",
|
|
65
|
-
"eslint": "^
|
|
60
|
+
"eslint": "^10.0.0",
|
|
66
61
|
"prettier": "^3.4.2",
|
|
67
62
|
"tsdown": "^0.21.3",
|
|
68
63
|
"typescript": "^5.9.3"
|
|
69
64
|
},
|
|
70
65
|
"peerDependencies": {
|
|
71
|
-
"eslint": "^9.0.0"
|
|
66
|
+
"eslint": "^9.0.0 || ^10.0.0"
|
|
67
|
+
},
|
|
68
|
+
"publishConfig": {
|
|
69
|
+
"ghpr": true,
|
|
70
|
+
"npm": true,
|
|
71
|
+
"npmAccess": "public"
|
|
72
72
|
}
|
|
73
73
|
}
|