Skip to content

Commit 2e2ef01

Browse files
fix: update import/no-extraneous-dependencies
1 parent f89b6b9 commit 2e2ef01

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/plugins/import.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ export const settings: Linter.Config = {
5959
bundledDependencies: true,
6060
devDependencies: [
6161
"*.{js,cjs,mjs,ts,cts,mts,jsx,tsx}",
62-
"scripts/**",
63-
"spec/**",
64-
"test/**",
65-
"tests/**",
62+
"**/scripts/**",
63+
"**/spec/**",
64+
"**/test/**",
65+
"**/tests/**",
6666
"**/__mocks__/**",
6767
"**/__tests__/**",
6868
"**/*{.,_}{test,spec}.{js,cjs,mjs,ts,cts,mts,jsx,tsx}",
@@ -77,6 +77,7 @@ export const settings: Linter.Config = {
7777
"**/protractor.conf.*.{js,cjs,mjs,ts}",
7878
"**/rollup.config.{js,cjs,mjs,ts}",
7979
"**/rollup.config.*.{js,cjs,mjs,ts}",
80+
"**/vite.config.{js,cjs,mjs,ts}",
8081
"**/vue.config.{js,cjs,mjs,ts}",
8182
"**/webpack.config.{js,cjs,mjs,ts}",
8283
"**/webpack.config.*.{js,cjs,mjs,ts}",

0 commit comments

Comments
 (0)