eslint-config-nimedev

3.1.0 • Public • Published

eslint-config-nimedev

npm

An ESLint Shareable Config for nimedev JavaScript rules

Installation

$ npm install eslint-config-nimedev

Usage

Set your eslint config to:

{
  "extends": "nimedev"
}

Note: I omitted the eslint-config- prefix since it is automatically assumed by ESLint.

Extending the config

Simply add a "rules" key to your config and add your overrides there.

For example, to change the indentation to tabs and turn off the no-console rule:

{
  "extends": "nimedev",
  "rules": {
    "indentation": "tab",
    "no-console": 0
  }
}

Changelog

License

/eslint-config-nimedev/

    Package Sidebar

    Install

    npm i eslint-config-nimedev

    Weekly Downloads

    6

    Version

    3.1.0

    License

    MIT

    Last publish

    Collaborators

    • nimedev