
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.
@igne-agency/eslint-config-igne
Advanced tools
Contains configs that can be used for react projects. Tested with Vite, NextJS and Expo.
Once for a project.
npm i -D eslint @igne-agency/eslint-config-igne
Make sure that your project has type: "module"
in package.json
.
Also tsconfig file name(s) should be tsconfig.json
or tsconfig.*.json
for import linting to work.
Add eslint.config.js
to your project root:
import { eslintConfigDefault } from "@igne-agency/eslint-config-igne";
const config = [...eslintConfigDefault];
export default config;
Add a script in package.json
to lint:
"scripts": {
"lint": "eslint"
}
This will lint all js/ts files in your project.
It is possible to exclude files or folders by adding an object with the ignores
property before eslintConfigDefault
.
import { eslintConfigDefault } from "@igne-agency/eslint-config-igne";
const config = [
{ ignores: ["eslint.config.js", "test/**"] },
...eslintConfigDefault
];
export default config;
Make sure to add a step to the pipeline of your project that runs this script, so that code quality is automatically checked.
For every developer.
dbaeumer.vscode-eslint
Developer: reload window
[option]+[l]
settings.json
and add:
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
Make sure to file an issue if you find one!
eslintConfigDefault
.Investigate:
FAQs
Eslint configs for Igne projects.
The npm package @igne-agency/eslint-config-igne receives a total of 30 weekly downloads. As such, @igne-agency/eslint-config-igne popularity was classified as not popular.
We found that @igne-agency/eslint-config-igne demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.