@bagaar/eslint-config

0.6.10 • Public • Published

Bagaar EsLint Config

Bagaar Logo

@bagaar/eslint-config is built and maintained by Bagaar.

NPM Version Conventional Commits

EsLint config for Bagaar projects.

Table of Contents

Installation

NPM

npm install @bagaar/eslint-config --save-dev

Yarn

yarn add @bagaar/eslint-config --dev

pnpm

pnpm add @bagaar/eslint-config --save-dev

Usage

Extend your local config with the default export of @bagaar/eslint-config:.

// .eslintrc.js

const config = require('@bagaar/eslint-config');

module.exports = {
  ...config,
  root: true,
};

The config value here is just a plain JS object so it can be customised at will. The config will contain different rules based on which dependencies are present, all peerdependencies are therefore optional.

If you want to extend instead of override a property, be sure to spread the original values as well, for example:

// .eslintrc.js

const config = require('@bagaar/eslint-config');

module.exports = {
  ...config,
  root: true,
  overrides: [
    ...config.overrides,
    {
      files: ['./index.js'],
      rules: {
        "no-console": 'off',
      }
    },
  ]
};

To print out the generated config to the console, set the env var DEBUG=true. e.g.:

// package.json
...
  "scripts": {
    "lint": "eslint . --cache",
    "lint:debug": "DEBUG=true eslint .",
  },
...

License

This project is licensed under the MIT License.

Dependencies (0)

    Dev Dependencies (9)

    Package Sidebar

    Install

    npm i @bagaar/eslint-config

    Weekly Downloads

    102

    Version

    0.6.10

    License

    MIT

    Unpacked Size

    14.2 kB

    Total Files

    13

    Last publish

    Collaborators

    • gvdp
    • bertdeblock