@mycujoo/tslint-config-mycujoo-base
v1.0.0
Published
TSLint base configuration file for @mycujoo
Downloads
2
Readme
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
}
}