@abinnovision/eslint-config-base 3.4.0 → 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/dist/configs/base.cjs
CHANGED
|
@@ -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}",
|
package/dist/configs/base.mjs
CHANGED
|
@@ -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 } },
|