eslint
Installation
SKILL.md
ESLint
Commands
| Task | Command |
|---|---|
| Lint everything | pnpm lint |
| Lint only ESLint | pnpm lint:eslint |
| Lint a specific file | pnpm exec eslint <path> |
| Lint with auto-fix | pnpm exec eslint --fix <path> |
Default action: When asked to "lint" or "run ESLint" without further qualification, run pnpm lint.
Before linting — explore the project first
Before running or modifying ESLint, read the project's eslint.config.mjs to understand:
- Which plugins and extends are active (e.g.
typescript-eslint,angular-eslint,eslint-plugin-storybook) - Which files and globs are covered or ignored
Related skills
More from dnd-mapp/ai-standards
pull-request
Create a GitHub pull request from the current branch following this project's conventions. Use when the user asks to create a pull request, open a PR, or submit changes for review.
12prettier
>
11commit
Analyze all git changes (staged and unstaged), group them by intent, and commit each group using Conventional Commits format with scopes. Use when committing changes, making commits, or when the user asks to "commit" or "create commits" from current changes.
11prisma
>
10angular
>
10nestjs
>
10