
Opinionated ESLint configuration and CLI for TypeScript, Vue, React, JSON, YAML, and Markdown. Use when linting code, fixing style issues, or configuring ESLint in projects using lintroll.
# Example Skill Instructional markdown with code examples that shouldn't be linted. ## Usage ```js // Semicolons and wrong indentation would normally fail const result = doSomething(); if (result) { console.log(result); } ``` ```ts // TypeScript example with style violations interface Config { name: string; value: number; } const config: Config = { name: "test", value: 1, }; ```