1.4.2-alpha.0 • Published 2 years ago

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

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

@dcrtit/eslint-config-import

Collection of rules based on eslint-plugin-import.

Installation

Assuming you have eslint already installed:

npm i eslint-plugin-import @dcrtit/eslint-config-import -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-import'
  ],
  rules: [
    // Your own rules' overrides, if needed
  ]
}