quickwit-oss / fix-clippy
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/fix-clippy && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/1894" && unzip -o skill.zip -d .claude/skills/fix-clippy && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/fix-clippy/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Fix all clippy lint warnings in the project
0 views
0 installs
Skill Content
--- name: fix-clippy description: Fix all clippy lint warnings in the project --- # Fix Clippy Clippy issues are **warnings**, not errors. Never grep for `error` when looking for clippy issues. ## Step 1: Auto-fix Run `make fix` to automatically fix clippy warnings: ``` make fix ``` ## Step 2: Fix remaining warnings manually Check for remaining warnings that couldn't be auto-fixed: ``` cargo clippy --tests 2>&1 | grep "^warning:" | sort -u ``` For each remaining warning, find the exact location and fix it manually.