Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
eslint-config-noise
Advanced tools
An opinionated [ESLint](https://github.com/eslint/eslint) config. There are many ways to [configure ESLint in the official documentation](https://eslint.org/docs/user-guide/configuring).
An opinionated ESLint config. There are many ways to configure ESLint in the official documentation.
npm install --save-dev eslint@^8.5 eslint-config-noise eslint-plugin-import@^2.25 eslint-plugin-promise@^6.0 eslint-plugin-unicorn@^40.0
.eslintrc
{ "extends": ["noise"] }
Make sure you have install the Noise base config.
npm install --save-dev eslint-plugin-node@^11.1
.eslintrc
{ "extends": ["noise", "noise/node"] }
.eslintrc
{ "extends": ["noise", "noise/node/script"] }
Make sure you have install the Noise base config.
npm install --save-dev eslint-plugin-jsx-a11y@^6.4 eslint-plugin-react@^7.23 eslint-plugin-react-hooks@^4.2
.eslintrc
{ "extends": ["noise", "noise/browser", "noise/react"] }
Make sure you have install the Noise base config.
npm install --save-dev @typescript-eslint/eslint-plugin@^5.8 @typescript-eslint/parser@^5.8 eslint-import-resolver-typescript@^2.5
.eslintrc
{ "extends": ["noise", "noise/typescript"] }
Make sure you have install the Noise base config.
npm install --save-dev eslint-config-prettier@^6 eslint-plugin-vue@^4.5
.eslintrc
{ "extends": ["noise", "noise/vue", "noise/vue/ts"] }
Many web apps are a combination of Node.js and browser directives. This presets
combines much of the browser
and node
configs with some tweaks.
Make sure you have install the Noise base config.
npm install --save-dev eslint-plugin-node@^11.1
.eslintrc
{ "extends": ["noise", "noise/web-app"] }
You can combine multiple extensions by following the install step per extension and configure them together.
.eslintrc
{ "extends": ["noise", "noise/react", "noise/typescript"] }
You can use the ESLint config overrides option to have a more structured configuration.
You can combine multiple extensions by following the install step per extension and configure them together.
.eslintrc
{
"extends": ["noise"],
"overrides": [
{
"files": ["**/*.ts"],
"extends": ["noise/typescript"]
},
{
"files": ["**/*.{jsx,tsx}"],
"extends": ["noise/react"]
},
{
"files": ["**/*.vue"],
"extends": ["noise/vue", "noise/vue/ts"]
},
{
"files": ["server/src/**"],
"extends": ["noise/node", "noise/typescript"]
},
{
"files": ["scripts/**"],
"extends": ["noise/node", "noise/node/scripts"]
},
{
"files": ["web-app/src/**"],
"extends": ["noise/web-app"]
}
]
}
FAQs
An opinionated [ESLint](https://github.com/eslint/eslint) config. There are many ways to [configure ESLint in the official documentation](https://eslint.org/docs/user-guide/configuring).
The npm package eslint-config-noise receives a total of 4 weekly downloads. As such, eslint-config-noise popularity was classified as not popular.
We found that eslint-config-noise 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
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.