| 1 | --- |
| 2 | name: fix |
| 3 | description: Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI. |
| 4 | --- |
| 5 | |
| 6 | # Fix Lint and Formatting |
| 7 | |
| 8 | ## Instructions |
| 9 | |
| 10 | 1. Run `yarn prettier` to fix formatting |
| 11 | 2. Run `yarn linc` to check for remaining lint issues |
| 12 | 3. Report any remaining manual fixes needed |
| 13 | |
| 14 | ## Common Mistakes |
| 15 | |
| 16 | - **Running prettier on wrong files** - `yarn prettier` only formats changed files |
| 17 | - **Ignoring linc errors** - These will fail CI, fix them before committing |