Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 638 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (21 loc) · 638 Bytes

Contributing

Install

# Install pnpm
corepack enable
corepack prepare pnpm@latest --activate

# Install dependencies
pnpm i

# Run tests
pnpm test

# Build
pnpm build

# Lint
pnpm lint

Submitting PRs

General rules

  • Make sure to add tests for any code written. They are written using vitest. The tests should pass before submitting a PR.
  • Make sure to run the linter before submitting a PR. The linter is run using pnpm lint. It uses biome.js for linting.
  • The PR must pass the CI checks before it can be merged. This means it should pass linting and tests.