lint

Detect and run the appropriate linter and formatter for JavaScript/TypeScript projects.

321|26|Updated Mar 10, 2026
One-click install
npx skills add https://github.com/mkurman/tamux --skill lint-mkurman
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lint
Source: https://github.com/mkurman/tamux/tree/main/skills/gsd-2/skills/lint
Command: npx skills add https://github.com/mkurman/tamux --skill lint-mkurman

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Lint and format code in your project by auto-detecting and running the appropriate tools, surfacing actionable suggestions for fixes.

Core Features & Use Cases

  • Auto-detects and runs the project’s linter and formatter toolchain.
  • Groups issues by severity and provides actionable suggestions for fixes.
  • Use Case: For a JavaScript/TypeScript project with ESLint and Prettier configurations, quickly clean up 1,000 lines of code and fix style issues.

Quick Start

Run lint checks on the modified files and apply safe fixes when requested.

Frequently Asked Questions about lint

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

FAQPage Schema
How do I lint and format code with auto-fix in a JavaScript project?

Lint and format JavaScript or TypeScript code by auto-detecting the project's toolchain from configuration files, running the appropriate linter via npx or local binaries, and applying automated fixes with the --fix option.

Can I use ESLint and Prettier together to fix code quality and style issues?

Yes, code quality and style issues can be fixed together by auto-detecting ESLint and Prettier configurations, running both tools, grouping issues by severity, and providing actionable suggestions for fixes.

Does the linter detect project tooling automatically for changed files?

Yes, the linter detects project tooling automatically from configuration files like Biome, ESLint, Prettier, and rustfmt, and can be configured to lint only changed files or a specified path.

What is the best way to run static analysis on a codebase without unintended file changes?

Run static analysis by auto-detecting and executing the appropriate linter and formatter, reporting results grouped by severity while avoiding unintended file changes unless the --fix flag is explicitly used.

Will linting work with Biome or rustfmt if they are configured in my project?

Yes, linting works with Biome or rustfmt by detecting these tools from project configuration files and executing them via npx or local binaries to surface actionable code quality suggestions.