Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@faulty/eslint-parallel
Advanced tools
Tiny eslint wrapper to allow executing javascript linting in parallel.
Tiny eslint wrapper to allow executing javascript linting in parallel.
Forked from https://github.com/pgAdmin/eslint-parallel to support ESLint 8.
Note that this requires a patch to eslint
to expose FileEnumerator
and other options that are not currently exported by that package. See the patch at ./patches/eslint@8.52.0.patch
to copy it in your codebase.
npm install @faulty/eslint-parallel
node_modules/.bin/eslint-parallel src/js/**
See ESLint Docs for all the options
import Linter from "eslint-parallel";
new Linter({
cache: true,
cwd: process.cwd(),
})
.execute(["src/js/**"])
.then(
(result) => {
const failed = result.errorCount || result.warningCount;
if (failed) {
// failed
} else {
// passed
}
},
(err) => {
console.log(err);
process.exit(1);
}
);
FAQs
Tiny eslint wrapper to allow executing javascript linting in parallel.
We found that @faulty/eslint-parallel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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.