Remove Eslint from linting job due to likely incompat with Svelte 5

This commit is contained in:
Neshura 2024-01-01 20:18:34 +01:00
parent 3d31710c3f
commit 6ae4141b8c
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -10,7 +10,8 @@
"preview": "vite preview", "preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check src && eslint src", "lint": "prettier --check src",
"lint-full": "prettier --check src && eslint src",
"format": "prettier --write src", "format": "prettier --write src",
"ui": "npx shadcn-svelte@latest" "ui": "npx shadcn-svelte@latest"
}, },