← スキル一覧に戻る

lint-code
by mvillmow
Training framework written in Mojo
⭐ 11🍴 4📅 2026年1月24日
SKILL.md
name: lint-code description: "Check code for style and quality issues. Use when validating code before commits." mcp_fallback: none category: analysis tier: 1 user-invocable: false
Lint Code
Run linting tools to identify style issues, potential bugs, and code quality problems in source files.
When to Use
- Pre-commit code validation
- Finding simple mistakes (unused variables, typos)
- Enforcing style consistency
- Quick code review before merging
Quick Reference
# Python linting
pylint module.py
flake8 .
black --check . # Format checker
# Mojo formatting (enforced by pre-commit)
pixi run mojo format file.mojo
# All linters via pixi
pixi run quality-run-linters
Workflow
- Select linters: Choose appropriate tools (pylint, flake8, black, etc.)
- Run checks: Execute linters on code
- Review issues: Analyze warnings and errors
- Fix problems: Address high-priority issues
- Verify fixes: Re-run linters to confirm
Output Format
Lint report:
- File path and line number
- Issue type (style, convention, error, warning)
- Issue description
- Suggested fix or reference
- Severity level
References
- See CLAUDE.md > Pre-commit Hooks for automated checking
- See
quality-run-lintersskill for comprehensive linting - See quality standards in CLAUDE.md for project guidelines
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です