Skip to content
OpenSmartRoute
Skillv1.0.0

linting-neostandard-eslint9

Configures ESLint v9 flat config and neostandard for JavaScript and TypeScript projects, including migrating from legacy `.eslintrc*` files or the `standard` package. Use when you need to set up or fi

by mcollina(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from mcollina/skills (skills/linting-neostandard-eslint9/SKILL.md) via skills.sh. Install upstream with npx skills add mcollina/skills --skill linting-neostandard-eslint9. Copyright stays with the author.

When to use

Use this skill when you need to:

  • Set up linting in a JavaScript or TypeScript project
  • Use neostandard as a Standard-like ESLint v9 flat-config baseline
  • Configure eslint@9 with the flat config system (eslint.config.js/eslint.config.mjs)
  • Migrate from standard to neostandard or ESLint v9
  • Migrate from legacy .eslintrc* configuration to ESLint v9
  • Run linting consistently in CI and local development

Quick start: basic neostandard setup

Install dependencies and create a minimal eslint.config.js:

npm install --save-dev eslint@9 neostandard
// eslint.config.js
import neostandard from 'neostandard'

export default neostandard()

Verify the config works:

npx eslint .

Common setup workflow (new project)

  1. Install eslint@9 and neostandard (see Quick start above)
  2. Create eslint.config.js with neostandard() as the base
  3. Add any project-specific rule overrides on top
  4. Run npx eslint . to confirm no config errors
  5. Add a lint script to package.json: "lint": "eslint ."
  6. Integrate into CI with a non-fix run; use --fix only in local workflows

How to use

Read individual rule files for implementation details and examples:

Core principles

  • Prefer reproducible linting with pinned major versions
  • Keep config minimal and explicit
  • Use flat config for ESLint v9 projects
  • Treat lint failures as quality gates in CI
  • Enable auto-fix for local workflows, but validate with non-fix CI runs

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/mcollina-skills-linting-neostandard-eslint9/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

mcollina-skills-linting-neostandard-eslint9.ocm.jsonjson
{
  "ocm": "1",
  "id": "mcollina-skills-linting-neostandard-eslint9",
  "kind": "skill",
  "name": "linting-neostandard-eslint9",
  "description": "Configures ESLint v9 flat config and neostandard for JavaScript and TypeScript projects, including migrating from legacy `.eslintrc*` files or the `standard` package. Use when you need to set up or fix linting with `eslint.config.js` or `eslint.config.mjs`, troubleshoot lint errors, configure neostandard rules, migrate from `.eslintrc` to flat config, or integrate linting into CI pipelines and pre-commit hooks.",
  "publisher": "mcollina",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "linting",
      "neostandard",
      "eslint",
      "eslint9",
      "flat-config",
      "javascript",
      "typescript",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Configures ESLint v9 flat config and neostandard for JavaScript and TypeScript projects, including migrating from legacy `.eslintrc*` files or the `standard` package. Use when you need to set up or fix linting with `eslint.config.js` or `eslint.config.mjs`, troubleshoot lint errors, configure neostandard rules, migrate from `.eslintrc` to flat config, or integrate linting into CI pipelines and pre-commit hooks."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/mcollina/skills",
      "path": "skills/linting-neostandard-eslint9/SKILL.md",
      "ref": "HEAD",
      "url": "https://www.skills.sh/mcollina/skills/linting-neostandard-eslint9",
      "key": "mcollina/skills/skills/linting-neostandard-eslint9/SKILL.md"
    }
  },
  "instructions": "## When to use\n\nUse this skill when you need to:\n- Set up linting in a JavaScript or TypeScript project\n- Use `neostandard` as a Standard-like ESLint v9 flat-config baseline\n- Configure `eslint@9` with the flat config system (`eslint.config.js`/`eslint.config.mjs`)\n- Migrate from `standard` to `neostandard` or ESLint v9\n- Migrate from legacy `.eslintrc*` configuration to ESLint v9\n- Run linting consistently in CI and local development\n\n## Quick start: basic neostandard setup\n\nInstall dependencies and create a minimal `eslint.config.js`:\n\n```bash\nnpm install --save-dev eslint@9 neostandard\n```\n",
  "cost": {
    "context_tokens": 527
  }
}

Fetch it by URL: GET /api/v1/registry/mcollina-skills-linting-neostandard-eslint9/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.