Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dummdidumm committed Mar 11, 2024
1 parent 626617d commit f2a7bc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ try {
let warned = false;

function getMajor() {
return Number(svelte.VERSION.split('.')[0])
return Number(svelte.VERSION.split('.')[0]);
}

module.exports = function(source, map) {
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/file.svelte.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const count = $state({ value: 0 });
export const count = $state({ value: 0 }); // eslint-disable-line no-undef

0 comments on commit f2a7bc1

Please sign in to comment.