Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,11 @@ Before submitting a PR (pull request), verify that all checks pass:

1. **Run Linting**
```bash
pnpm lint
pnpm lint:fix
```
2. **Format Code**
```bash
pnpm prettier:check
pnpm format:write
```
3. **TypeScript Checks**
```bash
Expand Down Expand Up @@ -348,7 +348,7 @@ commands**:
- **Formatting**: verifies if the code adheres to `Prettier` formatting rules.

```bash
pnpm prettier:check
pnpm format:check
```

- **TypeScript Validation**: ensures TypeScript types are valid and there is no type-related breaking error.
Expand Down
2 changes: 1 addition & 1 deletion scripts/pre-pack.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

# Run the Prettier check
pnpm prettier:check &&
pnpm format:check &&

# Run linting
pnpm lint &&
Expand Down