Skip to content

Commit 4f7ac9d

Browse files
committed
address comments.
1 parent 0a4ca86 commit 4f7ac9d

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

eslint.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ export default ts.config(
3434
'svelte/no-reactive-reassign': 'off',
3535
'svelte/no-reactive-literals': 'off',
3636
// TODO: @itznotabug, this requires a big refactor!
37-
'svelte/no-navigation-without-resolve': 'off',
38-
'svelte/prefer-svelte-reactivity': 'off',
39-
'svelte/prefer-writable-derived': 'off'
37+
'svelte/no-navigation-without-resolve': '"warn"',
38+
'svelte/prefer-svelte-reactivity': '"warn"',
39+
'svelte/prefer-writable-derived': '"warn"'
4040
}
4141
},
4242
{

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"build": "bun run build.js",
77
"preview": "vite preview",
88
"prepare": "svelte-kit sync || echo ''",
9-
"clean": "rm -rf node_modules && rm -rf .svelte_kit && bun install --force",
9+
"clean": "rm -rf node_modules && rm -rf .svelte_kit && bun install",
1010
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
1111
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
1212
"format": "prettier --write --cache .",
@@ -91,6 +91,5 @@
9191
},
9292
"overrides": {
9393
"vite": "npm:rolldown-vite@latest"
94-
},
95-
"packageManager": "bun@1.3.3"
94+
}
9695
}

0 commit comments

Comments
 (0)