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
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
-1
biome.json
···
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,