Showing 28 verified skills. 284 preview entries are hidden until we confirm a real source. Show preview skills · Why?
Get real-time linting with auto-fix suggestions as you code
claude install community/eslint-lspReal-time ESLint integration providing inline diagnostics, auto-fix suggestions, and configurable rule enforcement.
This is the actual SKILL.md file that powers this skill. Copy it to install.
---
name: eslint-lsp
description: |
Run ESLint diagnostics after edits to catch linting errors in real time.
Always active when working in JavaScript or TypeScript projects with ESLint.
allowed-tools:
- Bash(npx eslint --no-warn-ignored *)
- Bash(npx eslint --fix *)
- Read
- Glob
---
# ESLint LSP
Real-time ESLint integration that runs diagnostics after every file edit.
Catches style violations, potential bugs, and enforces project conventions
before they reach code review.
## Workflow
1. After editing a .js/.ts/.jsx/.tsx file, run ESLint on the changed file
2. If errors are found, fix them automatically when possible
3. Report remaining issues that need manual attention
## Commands
```bash
# Check a single file
npx eslint --no-warn-ignored src/components/Button.tsx
# Auto-fix all fixable issues
npx eslint --fix src/components/Button.tsx
# Check entire project
npx eslint .
```
## Example usage
- Edit a file, then ESLint runs automatically
- "Fix all ESLint errors in this file"
- "What ESLint rules am I violating?"
## Configuration
Uses the project's existing ESLint configuration (.eslintrc, eslint.config.js,
or eslint.config.mjs). No additional setup needed.
## Requirements
- ESLint 8+ installed in the project
- ESLint config file present in the project root
mkdir -p ~/.claude/skills/eslint-lsp~/.claude/skills/eslint-lsp/SKILL.mdResulting file structure:
~/.claude/
skills/
eslint-lsp/
SKILL.md <-- skill definitionSkills are loaded automatically by Claude Code when you start a new session. The skill name and description in the frontmatter determine when Claude triggers it.
Recommended from shared domain, career, and tool overlap with ESLint LSP
Query databases, inspect schemas, and explore data from your AI editor
Both used by Software Engineer
Inspect Redis keys, TTLs, and cache hit rates from your AI editor
Both used by Software Engineer
Query Sentry errors and analyze stack traces from your AI editor
Both used by Software Engineer
Manage Stripe payments and subscriptions from your AI assistant
Both used by Software Engineer
Manage Supabase databases, auth, and storage from your editor
Both used by Software Engineer
Control a browser from your AI editor - navigate, screenshot, interact
Both used by Software Engineer
ESLint LSP