Skip to content

Commit

Permalink
fix: lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
oplik0 committed Oct 14, 2023
1 parent f9d160e commit c0a3864
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ module.exports = {
],
rules: {
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
"@typescript-eslint/ban-ts-comment": ["error", { "ts-ignore": "allow-with-description" }],
},
parserOptions: {
sourceType: "module",
Expand Down
4 changes: 2 additions & 2 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import Keys from "$routes/keys.svelte";
const routes = {
"/": wrap({
// @ts-ignore
// @ts-ignore: svelte4 type issues, will probably migrate back to SvelteKit later since spa-router seems unmaintained
component: Keys,
userData: {
title: "Keys",
Expand All @@ -31,7 +31,7 @@
},
}),
"*": wrap({
// @ts-ignore
// @ts-ignore: svelte4 type issues, will probably migrate back to SvelteKit later since spa-router seems unmaintained
component: Keys,
}),
};
Expand Down

0 comments on commit c0a3864

Please sign in to comment.