lint-fixer

Automate lint-fix operations for JavaScript/TypeScript projects using npm and configured lint tools.

1|Updated Jan 29, 2026
One-click install
npx skills add https://github.com/AngelP17/factoryops-console --skill lint-fixer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lint-fixer
Source: https://github.com/AngelP17/factoryops-console/tree/main/factoryops-console/.agent/skills/lint-fixer
Command: npx skills add https://github.com/AngelP17/factoryops-console --skill lint-fixer

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the process of identifying and fixing linting issues in a codebase, reducing manual debugging time and ensuring consistent style across the project.

Core Features & Use Cases

  • Auto-fix lint issues using Biome and oxlint while preserving code functionality
  • Validate code with tsgo and detect secrets with secretlint
  • Workflow example: after a code change or a pull request, run npm run lint to auto-fix issues, review changes, and commit fixes
  • Use Case: A developer pushes a PR with several lint errors; this skill auto-fixes the obvious style issues and ensures code passes lint before review.

Quick Start

Run npm run lint to identify issues and automatically fix many of them. Review the changes with git diff, then run npm run test to ensure no breakage.

Frequently Asked Questions about lint-fixer

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

FAQPage Schema
How do I auto-fix linting errors in my JavaScript or TypeScript project?

Auto-fix linting errors by running npm run lint, which applies lint-fix operations using tools like Biome or oxlint to correct style issues automatically while preserving code behavior. Review changes with git diff and run tests to confirm no breakage.

What linting tools does this skill support?

This skill supports Biome, oxlint, tsgo, and secretlint for fixing style issues and detecting secrets. All tools must be installed and configured in your project's package.json and related config files.

Can I automatically fix lint issues before committing code?

Yes, this skill integrates into pre-commit and CI workflows. Run npm run lint to auto-fix issues, then review and commit the corrected code to ensure consistent style before merging pull requests.

Does lint-fixing change my code's behavior?

No, lint-fixing addresses only style and formatting issues while preserving code functionality. Running npm run test after fixes confirms that behavior remains unchanged.

What do I need to set up before running lint auto-fixes?

Install npm, your project's lint tools via package.json, and configure them with appropriate config files. The skill requires these tools to be already installed and configured before running lint operations.

Can this skill detect security issues like hardcoded secrets?

Yes, secretlint integration detects secrets in your codebase during lint operations. Combined with other linting tools, it ensures both code quality and security compliance.