Skip to content

Commit 4fbd7a0

Browse files
committed
Fix eslint weirdness
1 parent 49b26a3 commit 4fbd7a0

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ export default [
104104
},
105105
},
106106
],
107+
'svelte/no-navigation-without-resolve': 'warn',
107108
},
108109
},
109110
{

src/lib/stores/configurable-table-columns.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ export type WorkflowHeaderLabel = (typeof WorkflowHeaderLabels)[number];
3030

3131
// https://github.com/microsoft/TypeScript/issues/29729
3232
// https://stackoverflow.com/a/61048124
33-
// eslint-disable-next-line @typescript-eslint/ban-types
3433
type AnyWorkflowHeaderLabel = WorkflowHeaderLabel | (string & {});
3534

3635
export type ConfigurableTableHeader = {

src/lib/utilities/omit.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
type Omit = {
2-
// eslint-disable-next-line @typescript-eslint/ban-types
32
<Source extends object, KeysToOmit extends string[]>(
43
obj: Source,
54
...keys: KeysToOmit

0 commit comments

Comments
 (0)