a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
at trunk 402 B view raw
1{ 2 "plugins": ["@prettier/plugin-oxc"], 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"], 13 "options": { 14 "parser": "jsonc" 15 } 16 }, 17 { 18 "files": ["*.md"], 19 "options": { 20 "printWidth": 100, 21 "proseWrap": "always" 22 } 23 } 24 ] 25}