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.
@reservando/eslint-config
Advanced tools
eslint
&prettier
standard configs for Reservando.
It allows to work withhusky
andlint-staged
--save
so it installs all the required dependencies eslint
prettier
, husky
, plugins
, etcnpm install --save @reservando/eslint-config
.eslintrc.js
.module.exports = {
extends: [
"@reservando/eslint-config/config/eslint",
"@reservando/eslint-config/config/eslint-testcafe",
"@reservando/eslint-config/config/eslint-jest",
"@reservando/eslint-config/config/eslint-typescript",
"@reservando/eslint-config/config/eslint-vue",
],
rules: {
// My custom rules
},
};
.prettierrc.js
const sharedConfig = require("@reservando/eslint-config/config/prettier");
module.exports = {
...sharedConfig,
// My custom rules
};
package.json
{
"scripts": {
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:fix": "npm run lint:prettier -- --write && npm run lint:eslint -- --fix",
"lint:eslint": "eslint '**/*.{js,ts,vue}'",
"lint:prettier": "prettier --check '**/*.{md,scss,json}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{md,scss,json}": "prettier --write"
}
}
FAQs
Husky, Eslint and Prettier config for Reservando
The npm package @reservando/eslint-config receives a total of 0 weekly downloads. As such, @reservando/eslint-config popularity was classified as not popular.
We found that @reservando/eslint-config 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.