We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 626617d commit f2a7bc1Copy full SHA for f2a7bc1
index.js
@@ -56,7 +56,7 @@ try {
56
let warned = false;
57
58
function getMajor() {
59
- return Number(svelte.VERSION.split('.')[0])
+ return Number(svelte.VERSION.split('.')[0]);
60
}
61
62
module.exports = function(source, map) {
test/fixtures/file.svelte.js
@@ -1 +1 @@
1
-export const count = $state({ value: 0 });
+export const count = $state({ value: 0 }); // eslint-disable-line no-undef
0 commit comments