1.4.2-alpha.0 • Published 2 years ago

@dcrtit/eslint-config-unicorn v1.4.2-alpha.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

@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
  ]
}