Personal blog finxol.io
blog

fix: linting

+10 -2
+3 -1
app/components/ShareActions.vue
··· 46 46 .writeText(window.location) 47 47 .then(() => { 48 48 copied.value = true; 49 - setTimeout(() => (copied.value = false), 2000); 49 + setTimeout(() => { 50 + copied.value = false; 51 + }, 2000); 50 52 }) 51 53 .catch((error) => console.error(error)); 52 54 };
+7 -1
biome.json
··· 7 7 }, 8 8 "files": { 9 9 "ignoreUnknown": false, 10 - "ignore": [".nuxt/**/*"] 10 + "ignore": [ 11 + ".nuxt/**/*", 12 + "node_modules/**/*", 13 + ".data/**/*", 14 + ".output/**/*", 15 + "dist/**/*" 16 + ] 11 17 }, 12 18 "formatter": { 13 19 "enabled": true,