Skip to content
This repository was archived by the owner on Sep 25, 2024. It is now read-only.

Commit 38dbe5a

Browse files
committed
feat(eslint.config.js): add import/no-extraneous-dependencies rule
This commit adds a new rule to the ESLint configuration. The rule, 'import/no-extraneous-dependencies', is set to 'error'. This will help ensure that no unnecessary dependencies are imported into the project.
1 parent a699a48 commit 38dbe5a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

eslint.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@ export default ryoppippi({
55
ignores: ['tests/**/*.svelte'],
66
typescript: {
77
tsconfigPath: './tsconfig.json',
8+
overrides: {
9+
'import/no-extraneous-dependencies': ['error'],
10+
},
811
},
912
});

0 commit comments

Comments
 (0)