the statusphere demo reworked into a vite/react app in a monorepo
0
fork

Configure Feed

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

Remove biome and lint-staged

-41
-31
biome.json
··· 1 - { 2 - "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", 3 - "javascript": { 4 - "formatter": { 5 - "semicolons": "asNeeded", 6 - "quoteStyle": "single" 7 - } 8 - }, 9 - "formatter": { 10 - "indentStyle": "space", 11 - "lineWidth": 120 12 - }, 13 - "organizeImports": { "enabled": true }, 14 - "linter": { 15 - "enabled": true, 16 - "rules": { 17 - "recommended": true, 18 - "suspicious": { 19 - "noExplicitAny": "off", 20 - "noConfusingVoidType": "off" 21 - }, 22 - "style": { 23 - "noUselessElse": "off", 24 - "noNonNullAssertion": "off" 25 - }, 26 - "complexity": { 27 - "noForEach": "off" 28 - } 29 - } 30 - } 31 - }
-10
package.json
··· 12 12 "start": "node dist/index.js", 13 13 "lexgen": "lex gen-server ./src/lexicon ./lexicons/*", 14 14 "clean": "rimraf dist coverage", 15 - "lint": "biome check src/", 16 - "lint:fix": "biome check src/ --fix", 17 - "format": "biome format src/", 18 15 "test": "vitest run" 19 16 }, 20 17 "dependencies": { ··· 42 39 }, 43 40 "devDependencies": { 44 41 "@atproto/lex-cli": "^0.4.1", 45 - "@biomejs/biome": "1.8.3", 46 42 "@types/better-sqlite3": "^7.6.11", 47 43 "@types/cors": "^2.8.17", 48 44 "@types/express": "^4.17.21", 49 - "lint-staged": "^15.2.2", 50 45 "pino-pretty": "^11.0.0", 51 46 "rimraf": "^5.0.0", 52 47 "supertest": "^7.0.0", ··· 56 51 "typescript": "^5.4.4", 57 52 "vite-tsconfig-paths": "^4.3.2", 58 53 "vitest": "^2.0.0" 59 - }, 60 - "lint-staged": { 61 - "*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": [ 62 - "biome check --apply --no-errors-on-unmatched" 63 - ] 64 54 }, 65 55 "tsup": { 66 56 "entry": [