Skip to content

Commit

Permalink
🎨 Fix linting and formatting issues in package.json and tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
NatoBoram committed Feb 2, 2024
1 parent 974326f commit 96f0b82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --check . && eslint .",
"lint:fix": "eslint --fix . && pnpm run format",
"lint:fix": "eslint --fix . && pnpm run format --list-different",
"format": "prettier --write .",
"docker:build": "docker build --secret id=BUILD_BASE --tag lmgtfy .",
"docker:run": "docker run --publish 127.0.0.1:3000:3000 lmgtfy",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false
"allowUnreachableCode": false,

// Completeness
}
},
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant
Expand Down

0 comments on commit 96f0b82

Please sign in to comment.