一键导入
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 职业分类
| 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
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.