Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 750 Bytes

File metadata and controls

34 lines (23 loc) · 750 Bytes

Contributing

Thanks for helping improve filepath.

Getting started

git clone https://github.com/acoyfellow/filepath.git
cd filepath
bun install

Copy .env.example to .env and fill values needed for local development.

Checks before you push

bun run lint
bun run check
bun test

CI runs check, lint, and build on pushes.

Pull requests

  • Keep changes focused on one concern when possible.
  • Note any user-visible behavior or deployment impact in the PR description.
  • If you change runtime or API behavior, update tests or smoke scripts where applicable.

Code style

  • TypeScript and Svelte 5; match existing patterns in the tree.
  • Prefer fixing root causes over silencing errors without context.