javascript-linter

Installation
SKILL.md

Lint JavaScript code

Linting catches bugs before runtime, enforces team coding standards, and prevents common mistakes that slip through code review.

Quick Reference

  • Set up ESLint with pnpm dlx eslint --init
  • Use shared configs (eslint:recommended, @typescript-eslint)
  • Integrate with your editor for real-time feedback
  • Add lint checks to CI/CD pipeline

Check

Set up JavaScript linting tools like ESLint to automatically detect syntax errors, enforce coding standards, and maintain consistent code quality across the team.

Fix

Configure ESLint with appropriate rules and plugins, integrate it into your development workflow, and fix all linting errors and warnings.

Installs
12
GitHub Stars
73.9K
First Seen
Aug 11, 2026
javascript-linter — thedaviddias/front-end-checklist