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

Add .editorconfig and update biome #29

merged opened by heaths.dev targeting main from heaths.dev/sequoia: editorconfig

Biome can use .editorconfig, so use consistent settings. Also refactors biome.json to use ubiquitously in the project.

Unfortunately, markdown files - which we can hopefully associate .mdx files with - aren't supported yet. See https://github.com/biomejs/biome/issues/3718.

Labels

None yet.

assignee

None yet.

Participants 2
AT URI
at://did:plc:tg3tb5wukiml4xmxml6qm637/sh.tangled.repo.pull/3mffu6re4sx22
+2 -8
Interdiff #0 โ†’ #1
.editorconfig

This file has not been changed.

README.md

This file has not been changed.

biome.json

This file has not been changed.

bun.lock

This patch was likely rebased, as context lines do not match.

docs/docs/public/sequoia-comments.js

This file has not been changed.

docs/package.json

This patch was likely rebased, as context lines do not match.

docs/sequoia.json

This file has not been changed.

docs/tsconfig.json

This patch was likely rebased, as context lines do not match.

package.json

This file has not been changed.

packages/cli/biome.json

This file has not been changed.

+2 -8
docs/src/lib/kv-stores.ts
··· 10 10 dpopJwk: Record<string, unknown>; 11 11 }; 12 12 13 - type SerializedSession = Omit< 14 - Parameters<SessionStore["set"]>[1], 15 - "dpopKey" 16 - > & { 13 + type SerializedSession = Omit<Parameters<SessionStore["set"]>[1], "dpopKey"> & { 17 14 dpopJwk: Record<string, unknown>; 18 15 }; 19 16 ··· 27 24 return JoseKey.fromJWK(jwk); 28 25 } 29 26 30 - export function createStateStore( 31 - kv: KVNamespace, 32 - ttl = 600, 33 - ): StateStore { 27 + export function createStateStore(kv: KVNamespace, ttl = 600): StateStore { 34 28 return { 35 29 async set(key, { dpopKey, ...rest }) { 36 30 const data: SerializedStateData = {

History

2 rounds 1 comment
sign up or login to add to the discussion
1 commit
expand
Add .editorconfig and update biome
expand 1 comment

Perfect; thank you!

pull request successfully merged
1 commit
expand
Add .editorconfig and update biome
expand 0 comments