
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
eslint-utils2
Advanced tools
在 eslint-utils 基础上优化 ReferenceTracker ,以支持通配符,例如:
import { ReferenceTracker } from "eslint-utils";
export default {
meta: {},
create(context) {
return {
"Program:exit"() {
const tracker = new ReferenceTracker(context.getScope());
const traceMap = {
// Find `console.*` .
console: {
[ReferenceTracker.SingleLevelWildcard]: {
[ReferenceTracker.READ]: true,
},
},
// Find `Object.prototype.**.bind()` .
Object: {
prototype: {
[ReferenceTracker.MultiLevelWildcard]: {
bind: {
[ReferenceTracker.CALL]: true,
},
},
},
},
};
for (const { node, path } of tracker.iterateGlobalReferences(
traceMap
)) {
context.report({
node,
message: "disallow {{name}}.",
data: { name: path.join(".") },
});
}
},
};
},
};
以下是 eslint-utils README 原文。
This package provides utility functions and classes for make ESLint custom rules.
For examples:
See documentation.
See releases.
Welcome contributing!
Please use GitHub's Issues/PRs.
npm test runs tests and measures coverage.npm run clean removes the coverage result of npm test command.npm run coverage shows the coverage result of the last npm test command.npm run lint runs ESLint.npm run watch runs tests on each file change.FAQs
Utilities for ESLint plugins.
We found that eslint-utils2 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.