Skip to content

Commit

Permalink
fix: ignore or fix lint warnings produced after svelte update
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikg committed Aug 27, 2024
1 parent db8c31d commit 12b7af7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script context="module">
<script module>
export const y = 1;
</script>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<!-- src attribute should be removed by svelte-preprocess -->
<!-- eslint-disable svelte/valid-compile -->
<script lang="ts" src="./MultiFile.ts"></script>

<template lang="html" src="./MultiFile.html"></template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
let hold_start_ts;
$: show_toggle =
// eslint-disable-next-line svelte/valid-compile
options.showToggleButton === 'always' || (options.showToggleButton === 'active' && enabled);
function mousemove(event) {
Expand Down

0 comments on commit 12b7af7

Please sign in to comment.