@dcrtit/eslint-config-unicorn
v1.4.2-alpha.0
Published
Collection of rules based on eslint-plugin-unicorn
Downloads
4
Readme
@dcrtit/eslint-config-unicorn
Collection of rules based on eslint-plugin-unicorn
.
Installation
Assuming you have eslint
already installed:
npm i eslint-plugin-unicorn @dcrtit/eslint-config-unicorn -D
Usage
In your .eslintrc.js
or whatsoever config file just simple extend your existing configuration with provided package:
module.exports = {
extends: [
// ...Other configs
'@dcrtit/eslint-config-unicorn'
],
rules: [
// Your own rules' overrides, if needed
]
}