Skip to content

Commit a15ece4

Browse files
committed
chore: update
1 parent d269929 commit a15ece4

2 files changed

Lines changed: 8 additions & 9 deletions

File tree

CONTRIBUTING.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,12 @@ Thank you for your interest in contributing to our project! This guide will help
2020

2121
1. Create a new branch: `git checkout -b feature/your-feature-name`
2222
2. 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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
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",

0 commit comments

Comments
 (0)