@abinnovision/eslint-config-base 3.4.0-beta.1 → 3.4.1-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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.4.0](https://github.com/abinnovision/js-commons/compare/eslint-config-base-v3.3.0...eslint-config-base-v3.4.0) (2026-04-28)
4
+
5
+
6
+ ### Features
7
+
8
+ * add complementary import-x rules to shared base config ([#602](https://github.com/abinnovision/js-commons/issues/602)) ([5e84da1](https://github.com/abinnovision/js-commons/commit/5e84da10aebab4f31ba2712d87c5ed65a71a9d13))
9
+
3
10
  ## [3.3.0](https://github.com/abinnovision/js-commons/compare/eslint-config-base-v3.2.2...eslint-config-base-v3.3.0) (2026-04-28)
4
11
 
5
12
 
@@ -110,6 +110,8 @@ const config = (0, eslint_config.defineConfig)([{
110
110
  devDependencies: [
111
111
  "**/*.{test,spec}.{ts,tsx,js,jsx,mts,mjs,cts,cjs}",
112
112
  "**/__tests__/**/*.{ts,tsx,js,jsx}",
113
+ "**/test/**/*.{ts,tsx,js,jsx,mts,mjs,cts,cjs}",
114
+ "**/tests/**/*.{ts,tsx,js,jsx,mts,mjs,cts,cjs}",
113
115
  "**/*.config.{ts,js,mts,mjs,cts,cjs}",
114
116
  "**/vitest.config.{ts,js,mts,mjs}",
115
117
  "**/eslint.config.{ts,js,mts,mjs}",
@@ -105,6 +105,8 @@ const config = defineConfig([{
105
105
  devDependencies: [
106
106
  "**/*.{test,spec}.{ts,tsx,js,jsx,mts,mjs,cts,cjs}",
107
107
  "**/__tests__/**/*.{ts,tsx,js,jsx}",
108
+ "**/test/**/*.{ts,tsx,js,jsx,mts,mjs,cts,cjs}",
109
+ "**/tests/**/*.{ts,tsx,js,jsx,mts,mjs,cts,cjs}",
108
110
  "**/*.config.{ts,js,mts,mjs,cts,cjs}",
109
111
  "**/vitest.config.{ts,js,mts,mjs}",
110
112
  "**/eslint.config.{ts,js,mts,mjs}",
@@ -15,7 +15,9 @@ const config = (0, eslint_config.defineConfig)([{
15
15
  files: [
16
16
  "**/*.test.{ts,tsx,js,jsx}",
17
17
  "**/*.spec.{ts,tsx,js,jsx}",
18
- "**/__tests__/**/*.{ts,tsx,js,jsx}"
18
+ "**/__tests__/**/*.{ts,tsx,js,jsx}",
19
+ "**/test/**/*.{ts,tsx,js,jsx}",
20
+ "**/tests/**/*.{ts,tsx,js,jsx}"
19
21
  ],
20
22
  plugins: { vitest: _vitest_eslint_plugin.default },
21
23
  languageOptions: { globals: { ..._vitest_eslint_plugin.default.environments.env.globals } },
@@ -13,7 +13,9 @@ const config = defineConfig([{
13
13
  files: [
14
14
  "**/*.test.{ts,tsx,js,jsx}",
15
15
  "**/*.spec.{ts,tsx,js,jsx}",
16
- "**/__tests__/**/*.{ts,tsx,js,jsx}"
16
+ "**/__tests__/**/*.{ts,tsx,js,jsx}",
17
+ "**/test/**/*.{ts,tsx,js,jsx}",
18
+ "**/tests/**/*.{ts,tsx,js,jsx}"
17
19
  ],
18
20
  plugins: { vitest },
19
21
  languageOptions: { globals: { ...vitest.environments.env.globals } },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abinnovision/eslint-config-base",
3
- "version": "3.4.0-beta.1",
3
+ "version": "3.4.1-beta.1",
4
4
  "repository": {
5
5
  "url": "https://github.com/abinnovision/js-commons"
6
6
  },