lint

Run automated lint checks on JavaScript and TypeScript projects during refactoring.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/flesler/dotfiles --skill lint-flesler
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lint
Source: https://github.com/flesler/dotfiles/tree/main/home/.cursor/skills/lint
Command: npx skills add https://github.com/flesler/dotfiles --skill lint-flesler

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps developers quickly identify and fix style and syntax issues during refactoring by running automated linting checks.

Core Features & Use Cases

  • Read_lints tool is used to scan and fix lint issues during iterative development.
  • Linting checks enforce consistent style and catch common errors, reducing regression risk.
  • Use Case: When refactoring a JavaScript or TypeScript project, run the lint workflow from the project root to ensure code quality.

Quick Start

Run the lint workflow from the repository root to automatically detect and fix common issues.

Frequently Asked Questions about lint

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

FAQPage Schema
How do I automate lint checks during JavaScript refactoring?

You can automate lint checks during JavaScript refactoring by running a lint workflow from the repository root to detect and fix style issues. This enforces consistent code quality and prevents regressions during iterative development.

What npm scripts are required to run lint checks on a TypeScript project?

To run lint checks on a TypeScript project, your npm scripts must include lint:full:silent, lint:full, or lint:fix. These scripts trigger the read_lints tool to scan and resolve detected syntax errors.

When do I need to run lint checks for code quality?

You need to run lint checks for code quality when refactoring JavaScript or TypeScript projects to catch common syntax errors. Automated linting reduces regression risk by enforcing consistent style throughout iterative development.

Does this linting workflow work with varying project sizes?

Yes, this linting workflow works with JavaScript and TypeScript projects of varying sizes. Running from the project root ensures consistent results by scanning the entire codebase to detect and fix common issues automatically.

Why are my lint checks not working during iterative development?

Your lint checks may not be working because the required npm scripts are missing. The workflow requires lint:full:silent, lint:full, or lint:fix to be configured in your project to run the read_lints tool and fix issues.