1.0.0 • Published 5 years ago

@mycujoo/tslint-config-mycujoo-base v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

eslint-config-mycujoo-base

Introduction

This is the base ESLint configuration file used at mycujoo.

It is based on Airbnb's config.

Installation

NPM

npm install --save-dev eslint@latest eslint-plugin-import@latest @mycujoo/eslint-config-mycujoo-base

Yarn

yarn add --exact --dev eslint@latest eslint-plugin-import@latest @mycujoo/eslint-config-mycujoo-base

Your .eslintrc

To add the rules to your .eslintrc, extend the file with the package in the following manner:

{
  "extends": ["@mycujoo/mycujoo-base"]
}

Example:

{
  "extends": [
    "@mycujoo/mycujoo-base"
  ],
  "env": {
    "node": true,
    "jest": true
  }
}