multiAI Summary Pending
lint-fixer
Use this skill to run npm run lint and fix linting issues. Triggers on fixing lint errors after code changes or validating code against project style guidelines.
231 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/lint-fixer/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/yamadashy/lint-fixer/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/lint-fixer/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How lint-fixer Compares
| Feature / Agent | lint-fixer | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Use this skill to run npm run lint and fix linting issues. Triggers on fixing lint errors after code changes or validating code against project style guidelines.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Lint Fixer Fix linting issues while preserving code functionality. ## Lint Tools `npm run lint` runs 4 tools in sequence: 1. **Biome** (`biome check --write`) - Formatter + linter, auto-fixes 2. **oxlint** (`oxlint --fix`) - Fast JS/TS linter, auto-fixes 3. **tsgo** (`tsgo --noEmit`) - TypeScript type checking 4. **secretlint** - Detects secrets/credentials ## Workflow 1. Run `npm run lint` to identify issues 2. Review errors by category (type errors vs style vs secrets) 3. Fix issues - Biome/oxlint auto-fix most style issues 4. Run `npm run lint` again to verify 5. Run `npm run test` to ensure no breakage ## Config Files - `biome.json` - Formatting rules (2 spaces, 120 chars, single quotes) - `.oxlintrc.json` - JS/TS lint rules - `.secretlintrc.json` - Secret detection rules ## Key Points - Biome/oxlint auto-fix most issues; review changes - Type errors (tsgo) require manual fixes - Never change code behavior when fixing lint - Keep files under 250 lines