fix

Run Prettier formatting and linc lint checks on JavaScript/TypeScript repositories.

Updated Mar 27, 2026
One-click install
npx skills add https://github.com/quanngynx/GDGO-2026.Servexa-Warranty-AI --skill fix-quanngynx
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix
Source: https://github.com/quanngynx/GDGO-2026.Servexa-Warranty-AI/tree/main/servexa-warranty-ai/.cursor/skills/fix
Command: npx skills add https://github.com/quanngynx/GDGO-2026.Servexa-Warranty-AI --skill fix-quanngynx

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It helps you quickly resolve lint and formatting problems that would otherwise fail CI and block a commit.

Core Features & Use Cases

  • Run Prettier formatting: formats changed files to remove style inconsistencies.
  • Run linc lint checks: surfaces remaining lint errors so you can address them before CI does.
  • Identify manual leftovers: reports any remaining issues that still need human attention.

Quick Start

Use the fix skill to run prettier for formatting and then run linc to check for remaining lint errors before committing.

Frequently Asked Questions about fix

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

FAQPage Schema
How do I fix lint and formatting issues before CI runs?

Prettier formatting resolves style inconsistencies by rewriting changed files, while linc surfaces remaining lint errors that Prettier cannot automatically fix, requiring manual attention before passing CI checks.

Can I use this to run pre-commit checks for JavaScript and TypeScript repositories?

Yes, this is designed for JavaScript and TypeScript repositories to provide deterministic pre-commit checks by applying consistent code formatting and verifying remaining lint violations before committing.

What is the best way to automate formatting and lint checks before committing code?

The best way to automate formatting and lint checks is running yarn prettier followed by yarn linc, which formats changed files and reports any remaining manual fixes needed to fully pass CI.

Why does CI still fail after running Prettier for code formatting?

CI still fails after Prettier because Prettier only resolves style inconsistencies; you must run linc afterward to identify remaining lint errors that still need human attention to fully pass.

Does this skill automatically resolve all lint errors in my codebase?

No, it automatically applies Prettier formatting to fix style issues, but it only surfaces remaining lint errors from linc, reporting any manual leftovers that still need human attention to fully pass CI.