custom element for embedding Bluesky posts and feeds mary-ext.github.io/bluesky-embed
typescript npm bluesky atcute

chore: mess around with prettier config

mary.my.id 469a8de0 85d3586c

verified
Changed files
+11 -10
packages
bluesky-post-embed
bluesky-profile-feed-embed
site
+1
.prettierignore
··· 1 1 pnpm-lock.yaml 2 2 3 3 dist/ 4 + /packages/site/pages/
+1 -1
.prettierrc
··· 9 9 "plugins": ["prettier-plugin-svelte", "prettier-plugin-css-order"], 10 10 "overrides": [ 11 11 { 12 - "files": ["tsconfig.json", "jsconfig.json"], 12 + "files": ["tsconfig.json", "jsconfig.json", "tsconfig.*.json"], 13 13 "options": { 14 14 "parser": "jsonc" 15 15 }
+2 -2
packages/bluesky-post-embed/tsconfig.node.json
··· 7 7 "moduleResolution": "Bundler", 8 8 "strict": true, 9 9 "noEmit": true, 10 - "noUncheckedSideEffectImports": true 10 + "noUncheckedSideEffectImports": true, 11 11 }, 12 - "include": ["vite.config.ts"] 12 + "include": ["vite.config.ts"], 13 13 }
+2 -2
packages/bluesky-profile-feed-embed/tsconfig.node.json
··· 7 7 "moduleResolution": "Bundler", 8 8 "strict": true, 9 9 "noEmit": true, 10 - "noUncheckedSideEffectImports": true 10 + "noUncheckedSideEffectImports": true, 11 11 }, 12 - "include": ["vite.config.ts"] 12 + "include": ["vite.config.ts"], 13 13 }
+3 -3
packages/site/tsconfig.app.json
··· 8 8 "skipLibCheck": true, 9 9 "paths": { 10 10 "react": ["./node_modules/preact/compat/"], 11 - "react-dom": ["./node_modules/preact/compat/"] 11 + "react-dom": ["./node_modules/preact/compat/"], 12 12 }, 13 13 14 14 /* Bundler mode */ ··· 25 25 "noUnusedLocals": true, 26 26 "noUnusedParameters": true, 27 27 "noFallthroughCasesInSwitch": true, 28 - "noUncheckedSideEffectImports": true 28 + "noUncheckedSideEffectImports": true, 29 29 }, 30 - "include": ["src"] 30 + "include": ["src"], 31 31 }
+2 -2
packages/site/tsconfig.node.json
··· 18 18 "noUnusedLocals": true, 19 19 "noUnusedParameters": true, 20 20 "noFallthroughCasesInSwitch": true, 21 - "noUncheckedSideEffectImports": true 21 + "noUncheckedSideEffectImports": true, 22 22 }, 23 - "include": ["vite.config.ts"] 23 + "include": ["vite.config.ts"], 24 24 }