0.1.0 • Published 12 months ago

eslint-plugin-no-package-self-import v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

eslint-plugin-no-package-self-import

An ESLint plugin for finding instances of a package importing from itself

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-no-package-self-import:

npm install eslint-plugin-no-package-self-import --save-dev

Usage

Add no-package-self-import to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "no-package-self-import"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "no-package-self-import/rule-name": "warn"
    }
}

Or use the recommended configuration:

{
    "extends": [
        "plugin:no-package-self-import/recommended"
    ]
}

Configurations

Name
āœ…recommended

Rules

šŸ’¼ Configurations enabled in.\ āœ… Set in the recommended configuration.

NameDescriptionšŸ’¼
no-package-self-importDisallow importing from the same packageāœ…
0.1.0

12 months ago