JavaScript-optional public web frontend for Bluesky
anartia.kelinci.net
sveltekit
atcute
bluesky
typescript
svelte
1{
2 "trailingComma": "all",
3 "useTabs": true,
4 "tabWidth": 2,
5 "printWidth": 110,
6 "semi": true,
7 "singleQuote": true,
8 "bracketSpacing": true,
9 "plugins": ["prettier-plugin-svelte", "prettier-plugin-css-order"],
10 "overrides": [
11 {
12 "files": "*.svelte",
13 "options": {
14 "parser": "svelte"
15 }
16 },
17 {
18 "files": ["tsconfig.json", "jsconfig.json", "tsconfig.*.json"],
19 "options": {
20 "parser": "jsonc"
21 }
22 },
23 {
24 "files": ["*.md"],
25 "options": {
26 "printWidth": 100,
27 "proseWrap": "always"
28 }
29 }
30 ]
31}