
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
eslint-config-jorn-ts
Advanced tools
ESLint configuration for safe and beautiful code
This config gives you eslint configured with:
npm install eslint-config-jorn-ts
Add .eslintrc.js
to your project root..
module.exports = {
root: true,
extends: 'eslint-config-jorn-ts',
}
..and update tsconfig.json
with:
"include": [
"./.eslintrc.js",
"src"
]
Lastly, you may want to add a package.json script for linting the project. You can call this manually from the CLI or use it in your build pipeline to auto check your code.
"scripts": {
"lint": "eslint ./src"
}
You want at least auto fix on save. To do this your editor needs to know what to do with the eslint config.
.vscode/settings.json
with:{
"eslint.workingDirectories": [
"./"
],
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
Not listed here? Let me know in the repo
If your tsconfig
file lives somewhere else (a subdir), you probably can't use package.json to connect. So add .eslintrc.js
instead with:
module.exports = {
root: true,
extends: 'eslint-config-jorn-ts',
parserOptions: {
project: ['./<path_to>/tsconfig.json'],
},
}
Yes, just add an .eslintignore
file. It has the same syntax as .gitignore
.
FAQs
ESLint configuration for safe and beautiful code
The npm package eslint-config-jorn-ts receives a total of 0 weekly downloads. As such, eslint-config-jorn-ts popularity was classified as not popular.
We found that eslint-config-jorn-ts 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.