
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.
@solid-design-system/eslint-plugin
Advanced tools
ESLint custom rules for the Solid Design System component library
This package is a custom ESLint plugin designed to extend linting capabilities in your project. It provides custom ESLint rules to the Solid Design System component library, helping to enforce coding standards and catch potential issues when working with the library.
npm install --save-dev @solid-design-system/eslint-plugin
or with Yarn:
yarn add --dev @solid-design-system/eslint-plugin
import sds from '@solid-design-system/eslint-plugin';
export default [
{
...sds.configs.recommended,
files: ['**/*.{html,jsx}']
}
];
import sds from '@solid-design-system/eslint-plugin';
export default [
{
...sds.configs.recommended,
files: ['**/*.{html,jsx}'],
rules: {
...sds.configs.recommended.rules, // Must be defined. If not, all recommended rules will be lost
'@solid-design-system/required-sd-icon-label': 'error'
}
}
];
src/rules directory.index.ts file in src/rules to include the new rule.docs/rules/.Run the tests to verify rule behavior:
npm test
FAQs
ESLint custom rules for the Solid Design System component library
We found that @solid-design-system/eslint-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
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.