
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-devjmetivier
Advanced tools
These are my settings for ESLint and Prettier for Eslint
If you like them, awesome. If not, change them up!
You can use eslint globally and/or locally per project. It's usually best to install this locally once per project, that way you can have project specific settings as well as sync those settings with others working on your project via git.
If you don't already have a package.json file, create one with npm init
or yarn init
.
Install everything needed by the config:
npm install eslint-config-devjmetivier
or yarn add eslint-config-devjmetivier
Create a .eslintrc file in the root of your project's directory (it should live where package.json does). Your .eslintrc file should look like this:
{
"extends": ["devjmetivier"]
}
Tip: You can alternatively put this object in your package.json under the property "eslintConfig":. This makes one less file in your project.
You can add two scripts to your package.json to lint and/or fix:
"scripts": {
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint:fix": "eslint . --ext .js,.ts,.jsx,.tsx --fix"
}
Now you can manually lint your code by running npm run lint
and fix all fixable issues with npm run lint:fix
. You probably want your editor to do this automagically, though.
FAQs
ESLint Config from Devin Metivier
The npm package eslint-config-devjmetivier receives a total of 6 weekly downloads. As such, eslint-config-devjmetivier popularity was classified as not popular.
We found that eslint-config-devjmetivier 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.