forked from
j4ck.xyz/tweets2bsky
A simple tool which lets you scrape twitter accounts and crosspost them to bluesky accounts! Comes with a CLI and a webapp for managing profiles! Works with images/videos/link embeds/threads.
1{
2 "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3 "organizeImports": {
4 "enabled": true
5 },
6 "linter": {
7 "enabled": true,
8 "rules": {
9 "recommended": true,
10 "correctness": {
11 "noUnusedVariables": "warn",
12 "noUnusedImports": "warn"
13 },
14 "suspicious": {
15 "noExplicitAny": "warn"
16 },
17 "style": {
18 "useConst": "error",
19 "noNonNullAssertion": "warn"
20 }
21 }
22 },
23 "formatter": {
24 "enabled": true,
25 "indentStyle": "space",
26 "indentWidth": 2,
27 "lineWidth": 120
28 },
29 "javascript": {
30 "formatter": {
31 "quoteStyle": "single",
32 "semicolons": "always"
33 }
34 },
35 "files": {
36 "ignore": ["node_modules", "dist", "*.json"]
37 }
38}