
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
eslint-config-molindo
Advanced tools
Molindo ESLint config that implements our styleguide and helps to catch errors.
yarn add eslint eslint-config-molindo --dev
.eslintrc.js
:module.exports = {
// Add configs based on your needs
extends: [
'molindo/typescript', // Or `molindo/javascript`
'molindo/react', // Optional
'molindo/css-modules', // Optional
'molindo/tailwind', // Optional
'molindo/jest', // Optional
'molindo/cypress' // Optional
]
}
"extends": "eslint-config-molindo/tsconfig.json"
to your tsconfig.json
.Set the env
in .eslintrc
as necessary so ESLint doesn't report missing globals.
E.g.:
{
"browser": true,
"node": true,
"es6": true,
"jest": true
}
It's strongly recommended to use an eslint integration for your editor of choice (e. g. dbaeumer.vscode-eslint
for VSCode so you see warnings and errors while writing code. Also the setting to auto fix errors on save should be turned on, so purely stylistic errors such as the ones reported by prettier
are fixed automatically.
If your linter plugin checks your code as you type (before you save) it can be helpful to silence stylistic errors to reduce noise and let the formatting happen on save.
FAQs
Molindo ESLint config that implements our styleguide and helps to catch errors.
The npm package eslint-config-molindo receives a total of 530 weekly downloads. As such, eslint-config-molindo popularity was classified as not popular.
We found that eslint-config-molindo demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.