Skip to content

Commit 3b9c57c

Browse files
committed
๐Ÿ‘• Run linters and fix issues
1 parent 0d1fdaa commit 3b9c57c

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

โ€Žgyoza/package.jsonโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"test": "npm run test:integration && npm run test:unit",
1212
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
1313
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
14-
"lint": "eslint .",
14+
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
1515
"test:integration": "playwright test",
1616
"test:unit": "vitest"
1717
},

โ€Žgyoza/src/env.d.tsโ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/// <reference types="vite/client" />
22

3-
/* eslint-disable no-unused-vars */
4-
53
interface ImportMetaEnv {
64
readonly VITE_BACKEND_URL: string | undefined;
75
}

โ€Žgyoza/src/routes/+page.svelteโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
</section>
3636
</main>
3737

38-
<style>
38+
<style lang="postcss">
3939
section {
4040
@apply text-5xl leading-tight font-light;
4141
}

โ€Žonigiri/package.jsonโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"dev": "vite",
77
"build": "vite build",
8-
"lint": "eslint src --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0",
8+
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {

0 commit comments

Comments
ย (0)