eslint no fails compiles due to unused imports.

This commit is contained in:
Harrison Deng 2022-04-06 21:03:30 -05:00
parent 499cbf3409
commit c738e8044a
2 changed files with 5 additions and 3 deletions

View File

@ -35,6 +35,7 @@
"semi": [ "semi": [
"error", "error",
"always" "always"
] ],
"no-unused-vars": "warn"
} }
} }

View File

@ -14,7 +14,7 @@
4 4
], ],
"linebreak-style": [ "linebreak-style": [
"error", "warn",
"unix" "unix"
], ],
"quotes": [ "quotes": [
@ -24,6 +24,7 @@
"semi": [ "semi": [
"error", "error",
"always" "always"
] ],
"no-unused-vars": "warn"
} }
} }