web extension for disabling geographic restrictions on Bluesky
1{
2 "$schema": "https://json.schemastore.org/prettierrc",
3 "trailingComma": "all",
4 "useTabs": true,
5 "tabWidth": 2,
6 "printWidth": 110,
7 "semi": true,
8 "singleQuote": true,
9 "bracketSpacing": true,
10 "overrides": [
11 {
12 "files": ["tsconfig.json", "jsconfig.json", "tsconfig.*.json"],
13 "options": {
14 "parser": "jsonc"
15 }
16 },
17 {
18 "files": ["*.md"],
19 "options": {
20 "printWidth": 100,
21 "proseWrap": "always"
22 }
23 }
24 ]
25}