tangled
alpha
login
or
join now
finxol.io
/
blog
0
fork
atom
Personal blog
finxol.io
blog
0
fork
atom
overview
issues
pulls
pipelines
fix: linting
finxol.io
9 months ago
f5fbf0a5
a744021c
+10
-2
2 changed files
expand all
collapse all
unified
split
app
components
ShareActions.vue
biome.json
+3
-1
app/components/ShareActions.vue
···
46
.writeText(window.location)
47
.then(() => {
48
copied.value = true;
49
-
setTimeout(() => (copied.value = false), 2000);
0
0
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/**/*"]
0
0
0
0
0
0
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,