
Research
/Security News
10 npm Typosquatted Packages Deploy Multi-Stage Credential Harvester
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.
@morev/eslint-config-more
Advanced tools
Yet another strict shareable ESLint configuration
Strict shareable ESLint configuration that I personally use.
# yarn
yarn add eslint @morev/eslint-config-more --dev
# npm
npm install -D eslint @morev/eslint-config-more
# pnpm
pnpm add -D eslint @morev/eslint-config-more
Create ESLint configuration file and put the needed rules in extends section:
// .eslintrc.js
module.exports = {
root: true,
extends: [
'@morev/eslint-config-more/js/warn-autofixable',
'@morev/eslint-config-more/vue2/warn-autofixable',
'@morev/eslint-config-more/yaml/warn-autofixable',
'@morev/eslint-config-more/json/warn-autofixable',
],
};
The rules are separated by language, now it is js, yaml, json and vue2.
The rules don't intersect, so, if you working with Vue2, you need to include vue2 and js configs both.
Each ruleset can be used in three ways, depending on how you feel about errors that can be fixed automatically:
// .eslintrc.js
module.exports = {
root: true,
extends: [
'@morev/eslint-config-more/js',
'@morev/eslint-config-more/vue2',
'@morev/eslint-config-more/yaml',
'@morev/eslint-config-more/json',
],
};
// .eslintrc.js
module.exports = {
root: true,
extends: [
'@morev/eslint-config-more/js/warn-autofixable',
'@morev/eslint-config-more/vue2/warn-autofixable',
'@morev/eslint-config-more/yaml/warn-autofixable',
'@morev/eslint-config-more/json/warn-autofixable',
],
};
.eslintrc-format.js) and put the most strict config in it, and run linting on the pre-commit hook.
// .eslintrc.js
module.exports = {
root: true,
extends: [
'@morev/eslint-config-more/js/off-autofixable',
'@morev/eslint-config-more/vue2/off-autofixable',
'@morev/eslint-config-more/yaml/off-autofixable',
'@morev/eslint-config-more/json/off-autofixable',
],
};
prettier):Create .vscode/settings.json:
{
"prettier.enable": false,
"eslint.validate": [
"yaml",
"json",
"jsonc",
"json5"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
FAQs
Yet another strict shareable ESLint configuration
We found that @morev/eslint-config-more 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 found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.