tangled
alpha
login
or
join now
dunkirk.sh
/
myrus
0
fork
atom
a scrappy gimbal that insults you in shakespearean english
0
fork
atom
overview
issues
pulls
pipelines
chore: add prettier
Kieran Klukas
1 year ago
bfaef869
bd743d9c
+35
2 changed files
expand all
collapse all
unified
split
.prettierrc
biome.json
+5
.prettierrc
···
1
1
+
{
2
2
+
"useTabs": true,
3
3
+
"singleQuote": false,
4
4
+
"tabWidth": 2
5
5
+
}
+30
biome.json
···
1
1
+
{
2
2
+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3
3
+
"vcs": {
4
4
+
"enabled": false,
5
5
+
"clientKind": "git",
6
6
+
"useIgnoreFile": false
7
7
+
},
8
8
+
"files": {
9
9
+
"ignoreUnknown": false,
10
10
+
"ignore": ["src/bangs.json"]
11
11
+
},
12
12
+
"formatter": {
13
13
+
"enabled": true,
14
14
+
"indentStyle": "tab"
15
15
+
},
16
16
+
"organizeImports": {
17
17
+
"enabled": true
18
18
+
},
19
19
+
"linter": {
20
20
+
"enabled": true,
21
21
+
"rules": {
22
22
+
"recommended": true
23
23
+
}
24
24
+
},
25
25
+
"javascript": {
26
26
+
"formatter": {
27
27
+
"quoteStyle": "double"
28
28
+
}
29
29
+
}
30
30
+
}