Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
eslint-plugin-module
Advanced tools
ESLint plugins for module.
npm install eslint-plugin-moudle -g
Forbid the import of external modules that are not declared in the package.json
's dependencies
, devDependencies
, optionalDependencies
, peerDependencies
, or bundledDependencies
.
The closest parent package.json
will be used. If no package.json
is found, the rule will not lint anything. This behaviour can be changed with the rule option packageDir
.
This rule is inspired by import/no-extraneous-dependencies and TSLint rule no-implicit-dependencies.
The difference between import/no-extraneous-dependencies, is that modules don't have to be installed for this rule to work.
This rule supports the following options:
devDependencies
: If set to false
, then the rule will show an error when devDependencies
are imported. Defaults to true
.
optionalDependencies
: If set to false
, then the rule will show an error when optionalDependencies
are imported. Defaults to true
.
peerDependencies
: If set to false
, then the rule will show an error when peerDependencies
are imported. Defaults to false
.
bundledDependencies
: If set to false
, then the rule will show an error when bundledDependencies
are imported. Defaults to true
.
whitelist
: Whitelisted modules can to be added to skip checking their existence in package.json.
You can set the options like this:
"module/no-extraneous-dependencies": ["error", {"devDependencies": false, "optionalDependencies": false, "peerDependencies": false}]
You can also use an array of globs instead of literal booleans:
"module/no-extraneous-dependencies": ["error", {"devDependencies": ["**/*.test.js", "**/*.spec.js"]}]
You can set the whitelist modules like this:
"module/no-extraneous-dependencies": ["error", {"devDependencies": ["@components"]}]
FAQs
The ESLint configs for module.
The npm package eslint-plugin-module receives a total of 2 weekly downloads. As such, eslint-plugin-module popularity was classified as not popular.
We found that eslint-plugin-module demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.