work-in-progress atproto PDS
typescript atproto pds atcute
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at trunk 24 lines 439 B view raw
1{ 2 "$schema": "https://unpkg.com/oxlint/configuration_schema.json", 3 "ignorePatterns": ["packages/lexicons/lib/**"], 4 "options": { 5 "typeAware": true, 6 "typeCheck": true 7 }, 8 "categories": { 9 "correctness": "warn", 10 "suspicious": "warn", 11 "perf": "warn" 12 }, 13 "rules": { 14 "typescript/consistent-return": "off" 15 }, 16 "overrides": [ 17 { 18 "files": ["*.test.ts"], 19 "rules": { 20 "typescript/no-floating-promises": "off" 21 } 22 } 23 ] 24}