Skip to content

Commit 1a67fe4

Browse files
committed
Disable unused-imports/no-unused-imports
This rule will cause unused imports to be removed automatically when fix-on-save is enabled. Unused imports are already caught by the `@typescript-eslint/no-unused-vars` rule, so we do not need this one.
1 parent 0673e0d commit 1a67fe4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.eslintrc-rules.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": ["artisan"],
33
"rules": {
44
"unicorn/prefer-string-starts-ends-with": ["off", {}],
5+
"unused-imports/no-unused-imports": ["off"],
56
"vue/no-ref-object-destructure": ["error"],
67
"vue/no-setup-props-reactivity-loss": ["error"],
78
"vue/singleline-html-element-content-newline": ["off", {}],

0 commit comments

Comments
 (0)