File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,13 +20,12 @@ Thank you for your interest in contributing to our project! This guide will help
2020
21211 . Create a new branch: ` git checkout -b feature/your-feature-name `
22222 . Make your changes
23- 3 . Check for issues: ` bun run lint `
24- 4 . Format code: ` bun run format `
25- 5 . Run tests: ` bun run test `
26- 6 . Build the project: ` bun run build `
27- 7 . Commit your changes using the conventions below
28- 8 . Push your branch to your fork
29- 9 . Open a pull request
23+ 3 . Check and fix code style and formatting issues: ` bun run lint:fix `
24+ 4 . Run tests: ` bun run test `
25+ 5 . Build the project: ` bun run build `
26+ 6 . Commit your changes using the conventions below
27+ 7 . Push your branch to your fork
28+ 8 . Open a pull request
3029
3130## Commit Message Conventions
3231
Original file line number Diff line number Diff line change 1919 "scripts" : {
2020 "build" : " bunup --target bun --exports" ,
2121 "dev" : " bunup --watch" ,
22- "lint" : " biome check" ,
23- "format " : " biome format --write" ,
22+ "lint" : " biome check . " ,
23+ "lint:fix " : " biome check --write . " ,
2424 "tsc" : " tsc --noEmit" ,
2525 "test" : " bun test" ,
2626 "test:watch" : " bun test --watch" ,
You can’t perform that action at this time.
0 commit comments