An ESLint plugin for finding instances of a package importing from itself
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-no-package-self-import:
npm install eslint-plugin-no-package-self-import --save-devAdd 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"
    ]
}| Name | |
|---|---|
| ✅ | recommended | 
💼 Configurations enabled in.
✅ Set in the recommended configuration.
| Name | Description | 💼 | 
|---|---|---|
| no-package-self-import | Disallow importing from the same package | ✅ |