원클릭으로
lint-project
Validate code quality by running linting, formatting, and static analysis checks
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Validate code quality by running linting, formatting, and static analysis checks
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
Execute comprehensive test suite with coverage reporting
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
Detects code smells, anti-patterns, and readability issues. Use when implementing features, reviewing code, or refactoring.
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
| name | lint-project |
| description | Validate code quality by running linting, formatting, and static analysis checks |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","workflow":"code-quality"} |
After making code changes, I run the project's linting pipeline to catch quality issues early:
Use this skill after making code changes:
I execute: make check
This Makefile target orchestrates the full linting pipeline defined in your project:
make check
Which runs:
uv lock --locked - Validates lock fileuv run pre-commit run -a - All pre-commit hooksuv run mypy - Strict type checkinguv run deptry . - Dependency validationI'll show you:
If make check fails:
uv run ruff format . to auto-fixuv run ruff check --fix . for auto-fixable checksAfter you make changes, ask me to:
Or I may automatically suggest this skill after you've made code changes.
Related Skills: test-project, check-project