mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-04-23 08:26:37 +00:00
6ff14a1a7d
- Vendor local .claude/ command skills (autopilot, plan, implement, etc.) - Add CLAUDE.md pointing slash commands to .claude/commands/*/SKILL.md - Untrack docs-Lokal/ and ignore .planning/ for local-only planning docs - Include next_steps.md pulled from upstream Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
12 lines
584 B
Plaintext
12 lines
584 B
Plaintext
---
|
|
description: "Enforces linter checking, formatter usage, and quality verification after code edits"
|
|
alwaysApply: true
|
|
---
|
|
# Quality Gates
|
|
|
|
- After substantive code edits, run `ReadLints` on modified files and fix introduced errors
|
|
- Before committing, run the project's formatter if one exists (black, rustfmt, prettier, dotnet format)
|
|
- Respect existing `.editorconfig`, `.prettierrc`, `pyproject.toml [tool.black]`, or `rustfmt.toml`
|
|
- Do not commit code with Critical or High severity lint errors
|
|
- Pre-existing lint errors should only be fixed if they're in the modified area
|