1.0.3 • Published 4 years ago

@ab.progr/eslint-config-node-extended v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Installation

An eslint extension that requires zero configuration and is ready to lint node source code (under the hood uses existing eslint configs for airbnb-base and prettier).

NPM

npm install @ab.progr/eslint-config-node-extended --save-dev
or
npm i @ab.progr/eslint-config-node-extended -D

YARN

yarn add @ab.progr/eslint-config-node-extended --dev
or
yarn add @ab.progr/eslint-config-node-extended -D

Usage

// if using .eslintrc.json
{
  "extends": "@ab.progr/eslint-config-node-extended"
}

// if using .eslintrc.js
module.exports = {
  extends: [require.resolve("@ab.progr/eslint-config-node-extended")],
};

DEMO

Node-Express Boilerplate