Skip to content

Commit

Permalink
fix: Disable unused-imports eslint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
kiosion committed May 9, 2024
1 parent 9943ffa commit 0cb6b2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions svelte-app/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"svelte/no-dom-manipulating": ["error"],
"svelte/no-reactive-literals": ["error"],
"svelte/prefer-destructured-store-props": ["error"],
"unused-imports/no-unused-imports": ["error"],
"unused-imports/no-unused-imports": ["off"],
"unused-imports/no-unused-vars": [
"error", {
"varsIgnorePattern": "^_*",
Expand All @@ -149,10 +149,10 @@
]
},
"overrides": [
{
{
"files": [
"*.svelte"
],
],
"parser": "svelte-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser"
Expand Down

0 comments on commit 0cb6b2f

Please sign in to comment.