Personal blog finxol.io
blog

fix: linting

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