Skip to content
Open
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
4 changes: 2 additions & 2 deletions docs/dev/CODE_STYLE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Code Style

Most style is auto-enforced by tsconfig + eslint + prettier — run `task check` to validate, `task format` to auto-fix. This file captures the project-specific choices and the conventions to follow when tooling doesn't speak up.
Most style is auto-enforced by tsconfig + eslint + prettier — run `npm run check` to validate, `task style` to auto-fix. This file captures the project-specific choices and the conventions to follow when tooling doesn't speak up.

## TypeScript
- Strict type checking
Expand All @@ -27,7 +27,7 @@ Most style is auto-enforced by tsconfig + eslint + prettier — run `task check`

## Formatting

Auto-enforced by prettier: 2-space indentation, semicolons required, single quotes preferred. Run `task format` to apply.
Auto-enforced by prettier: 2-space indentation, semicolons required, single quotes preferred. Run `task style` to apply.

## Error handling

Expand Down