fix

Automates lint error fixes and formatting enforcement via yarn linc and prettier scripts.

1|Updated Feb 7, 2026
One-click install
npx skills add https://github.com/sangrokjung/claude-code-config-public --skill fix-sangrokjung
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix
Source: https://github.com/sangrokjung/claude-code-config-public/tree/main/skills/fix
Command: npx skills add https://github.com/sangrokjung/claude-code-config-public --skill fix-sangrokjung

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill addresses code quality issues by automatically fixing lint errors and code formatting, ensuring consistency and adherence to project standards before committing.

Core Features & Use Cases

  • Automated Formatting: Applies consistent code styling using Prettier.
  • Lint Error Detection: Identifies and helps resolve code quality issues.
  • Pre-Commit Check: Ensures code is clean and ready for version control, preventing CI failures.

Quick Start

Run the fix skill to format and lint the current code.

Frequently Asked Questions about fix

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automatically fix lint errors and format code before committing?

Automated scripts resolve lint errors and format code before committing by applying Prettier styling and running lint checks. This ensures code consistency and prevents CI failures.

How does Prettier enforce code formatting standards in a development workflow?

Prettier enforces code formatting standards by applying consistent code styling across the project. Running it as a pre-commit check ensures all code adheres to project standards before version control integration.

Why do I need to run linting checks before a pre-commit hook?

You need to run linting checks before a pre-commit hook to identify and resolve code quality issues early. This prevents formatting inconsistencies and lint errors from causing CI pipeline failures later.

Can I use yarn to run formatting and linting scripts for code hygiene?

Yes, you can use yarn to run formatting and linting scripts for code hygiene. The workflow utilizes yarn prettier for applying consistent code styling and yarn linc for detecting code quality issues.

What is the best way to prevent CI failures caused by code formatting issues?

The best way to prevent CI failures from code formatting issues is to enforce automated pre-commit checks. Applying Prettier formatting and resolving lint errors locally ensures clean code enters version control.