← Back to list

lint
by ahtavarasmus
Lightfriend cloud version
⭐ 2🍴 1📅 Jan 19, 2026
SKILL.md
name: lint description: Run formatting and linting checks on the codebase
Quick Lint Check
Run all code quality checks without committing.
Process
Step 1: Check Formatting
cd backend && cargo fmt --check
Report pass/fail status.
Step 2: Run Clippy
cd backend && cargo clippy --workspace --all-targets --all-features -- -D warnings
Report any warnings or errors.
Step 3: Summary
Report overall status:
- Formatting: PASS/FAIL
- Clippy: PASS/FAIL (with count of issues if any)
Auto-Fix Option
If formatting fails, offer to auto-fix:
cd backend && cargo fmt
For clippy issues, some can be auto-fixed:
cd backend && cargo clippy --fix --allow-dirty --allow-staged
Note: Not all clippy issues are auto-fixable. Manual fixes may be required.
Quick Reference
# Check only
cd backend && cargo fmt --check && cargo clippy --workspace --all-targets --all-features -- -D warnings
# Auto-fix formatting
cd backend && cargo fmt
# Auto-fix clippy (where possible)
cd backend && cargo clippy --fix --allow-dirty --allow-staged
Score
Total Score
60/100
Based on repository quality metrics
✓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
Reviews
💬
Reviews coming soon