fix

Pass

Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI.

@facebook
MIT2/19/2026
(0)
242.8kstars
1downloads
10views

Install Skill

Skills are third-party code from public GitHub repositories. SkillHub scans for known malicious patterns but cannot guarantee safety. Review the source code before installing.

Install globally (user-level):

npx skillhub install facebook/react/fix

Install in current project:

npx skillhub install facebook/react/fix --project

Suggested path: ~/.claude/skills/fix/

SKILL.md Content

---
name: fix
description: Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI.
---

# Fix Lint and Formatting

## Instructions

1. Run `yarn prettier` to fix formatting
2. Run `yarn linc` to check for remaining lint issues
3. Report any remaining manual fixes needed

## Common Mistakes

- **Running prettier on wrong files** - `yarn prettier` only formats changed files
- **Ignoring linc errors** - These will fail CI, fix them before committing