Hi! We're really excited that you're interested in contributing to chaos! Before submitting your contribution, please read through the following guide.
It is organized as a series of tasks for aspiring programmers to complete, each with a specific aim.
Here, we will introduce the contribution process for the chaos library.
- Fork the repository.
- Clone the repository to your local machine.
- Install dependencies:
pnpm install.
This project uses Biome for linting and formatting. We recommend installing the Biome VS Code extension for the best developer experience.
- Lint: Run
pnpm run lintto check for code quality issues. - Format: Run
pnpm run formatto format your code.
Please ensure your code passes all checks before submitting a pull request.
- Build:
pnpm run build - Test:
pnpm run test