We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 751d26b commit e835c07Copy full SHA for e835c07
docs/guide/check.md
@@ -17,6 +17,16 @@ vp check
17
vp check --fix # Format and run autofixers.
18
```
19
20
+## Phase skip flags
21
+
22
+`vp check` runs three phases — format, lint rules, and type check — all enabled by default. Each phase can be skipped independently:
23
24
+| Flag | Skips |
25
+| ---- | ----- |
26
+| `--no-fmt` | Format check |
27
+| `--no-lint` | Lint rules (type check still runs if enabled in config) |
28
+| `--no-type-check` | Type check |
29
30
## Configuration
31
32
`vp check` uses the same configuration you already define for linting and formatting:
0 commit comments