A CLI for publishing standard.site documents to ATProto sequoia.pub
standard site lexicon cli publishing
99

Configure Feed

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

Set defaultBranch for `biome lint --changed`

+4 -3
+2 -2
.tangled/workflows/lint.yml
··· 17 17 - name: "Install dependencies" 18 18 command: "bun install" 19 19 - name: "Lint check" 20 - command: "cd packages/cli && biome lint" 20 + command: "cd packages/cli && biome lint --changed --no-errors-on-unmatched" 21 21 - name: "Format check" 22 - command: "cd packages/cli && biome format" 22 + command: "cd packages/cli && biome format --changed --no-errors-on-unmatched"
+2 -1
biome.json
··· 2 2 "$schema": "https://biomejs.dev/schemas/2.3.6/schema.json", 3 3 "root": true, 4 4 "vcs": { 5 + "defaultBranch": "main", 5 6 "enabled": true, 6 7 "clientKind": "git", 7 8 "useIgnoreFile": true ··· 37 38 } 38 39 } 39 40 } 40 - } 41 + }