fix: linting
finxol.io 6 months ago f5fbf0a5 a744021c
··· 46 46 .writeText(window.location) 47 47 .then(() => { 48 48 copied.value = true; 49 49 - setTimeout(() => (copied.value = false), 2000); 49 49 + setTimeout(() => { 50 50 + copied.value = false; 51 51 + }, 2000); 50 52 }) 51 53 .catch((error) => console.error(error)); 52 54 };
··· 7 7 }, 8 8 "files": { 9 9 "ignoreUnknown": false, 10 10 - "ignore": [".nuxt/**/*"] 10 10 + "ignore": [ 11 11 + ".nuxt/**/*", 12 12 + "node_modules/**/*", 13 13 + ".data/**/*", 14 14 + ".output/**/*", 15 15 + "dist/**/*" 16 16 + ] 11 17 }, 12 18 "formatter": { 13 19 "enabled": true,