Skip to content

Commit 519c5af

Browse files
committed
Rename plain-lint skill to plain-fix
The name now matches the primary command (plain fix) and is action-oriented. - /fix = quick code cleanup during development - /pre-commit = comprehensive validation when done
1 parent d51294a commit 519c5af

File tree

2 files changed

+25
-27
lines changed

2 files changed

+25
-27
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: plain-fix
3+
description: Fixes code formatting and linting issues. Use during development to clean up code as you work.
4+
---
5+
6+
# Fix Code Issues
7+
8+
```
9+
uv run plain fix [path]
10+
```
11+
12+
Automatically fixes formatting and linting issues using ruff and biome.
13+
14+
Options:
15+
16+
- `--unsafe-fixes` - Apply ruff unsafe fixes
17+
- `--add-noqa` - Add noqa comments to suppress errors
18+
19+
## Check Without Fixing
20+
21+
```
22+
uv run plain code check [path]
23+
```
24+
25+
Runs ruff, ty (type checking), biome, and annotation coverage checks without auto-fixing.

plain-code/plain/code/skills/plain-lint/SKILL.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)