verify
Installation
SKILL.md
코드 검증
작업 완료 후 코드를 검증합니다. 순서대로 실행하며, 각 단계 통과 후 다음으로 진행.
Step 1: 프로젝트 감지
| 파일 | 스택 | 타입체크 | 린트 | 테스트 | 빌드 |
|---|---|---|---|---|---|
package.json |
Node/TS | npx tsc --noEmit |
npx eslint . / npx biome check . |
npx vitest run / npx jest |
npm run build |
pyproject.toml |
Python | mypy . / pyright . |
ruff check . |
pytest -q |
— |
go.mod |
Go | go vet ./... |
golangci-lint run |
go test ./... |
go build ./... |
Cargo.toml |
Rust | — | cargo clippy |
cargo test |
cargo build |