All SkillsGet Started Free
Ln 741 Linter Configurator
Configures ESLint, Prettier, Ruff, mypy, and .NET analyzers. Use when setting up linting and formatting for a project.
MCP get_skill({ skillId: "ln-741-linter-configurator-b45a300d" })Use this skill with your agent
Create a free account and connect via MCP
> **Paths:** File paths (`references/`, `../ln-*`) are relative to this skill directory. # ln-741-linter-configurator **Type:** L3 Worker **Category:** 7XX Project Bootstrap Configures code linting, formatting, and type checking tools for TypeScript, Python, and .NET projects. --- ## Purpose & Scope **Does:** - Detects which linter stack to configure based on project type - Checks for existing linter configurations - Generates appropriate config files from templates - Installs required dependencies (always latest versions, no pinning) - Generates unified lint script (`scripts/lint.sh`) - Verifies all linters run without errors **Does NOT:** - Configure pre-commit hooks (separate worker) - Set up test infrastructure (separate worker) - Modify source code --- ## Supported Stacks | Technology | Linter | Type Checker | Formatter | Config Files | |------------|--------|-------------|-----------|--------------| | TypeScript | ESLint 9+ (flat config) | TypeScript (tsc) | Prettier | `eslint.config.ts`, `.prettierrc` | | .NET | Roslyn Analyzers | Roslyn | dotnet format | `.editorconfig`, `Directory.Build.props` | | Python | Ruff | mypy | Ruff (built-in) | `ruff.toml`, `mypy.toml` (or `pyproject.toml`) | --- ## Phase 1: Check Existing Configuration Before generating configs, check what already exists. **Files to Check:** | Stack | Config Files | Glob Pattern | |-------|--------------|--------------| | TypeScript | ESLint config | `eslint.config.*`, `.eslintrc*` | | TypeScript | Prettier config | `.prettierrc*`, `prettier.config.*` | | .NET | Editor config | `.editorconfig` | | .NET | Build props | `Directory.Build.props` |
#agile-workflow#code-review#code#qualitynodejsnpm