@strv/eslint-config-node

4.0.0 • Public • Published

@strv/eslint-config-node

Configuration for Node.js projects.

Installation

npm install -D @strv/eslint-config-node

Rulesets

  • '@strv/eslint-config-node': A generic ruleset that focuses on code correctness
  • '@strv/eslint-config-node/optional': Addiitonal ruleset that might provide useful tips and hints how to improve your code
  • '@strv/eslint-config-node/style': Ruleset that focuses solely on code style (indentation, spacing, naming, syntax preference etc.)

Usage

// eslint.config.mjs
import node from '@strv/eslint-config-node'
import optional from '@strv/eslint-config-node/optional'
import style from '@strv/eslint-config-node/style'
// Just to help us re-use the same globs multiple times
const globs = {
  js: '**/*.js',
}

/** @type {Array<import("eslint").Linter.FlatConfig>} */
const config = [
  { files: [globs.js], ...node },
  { files: [globs.js], ...optional },
  { files: [globs.js], ...style },
  // Any custom settings to be applied
  { files: [globs.js],
    languageOptions: { ecmaVersion: 2023 },
  },
]

export default config

License

See the LICENSE file for information.

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @strv/eslint-config-node

    Weekly Downloads

    505

    Version

    4.0.0

    License

    BSD-3-Clause

    Unpacked Size

    20 kB

    Total Files

    8

    Last publish

    Collaborators

    • lucasconstantino
    • strvuser
    • robertrossmann
    • xhudec