Skip to content

Commit

Permalink
fix formatter & linting
Browse files Browse the repository at this point in the history
  • Loading branch information
beerinho committed Mar 23, 2024
1 parent d720e23 commit ad67667
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev",
"format": "prettier --write .",
"format": "eslint . --fix && prettier --write .",
"lint": "prettier --check . && eslint .",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function _task<TArgs = undefined, TReturn = unknown>(
results,
});

let abort_controllers = new Set<AbortController>();
const abort_controllers = new Set<AbortController>();

onDestroy(() => {
abort_controllers.forEach((abort_controller) => {
Expand Down

0 comments on commit ad67667

Please sign in to comment.