
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.
@kiridevs_configs/eslint
Advanced tools
kiriDevs' default ESLint config (mainly made for Node18, using the new Flat Config format)
@kiridevs_configs/eslint
This package contains my personal default eslint
configuration.
Note: This package uses the new, Flat Config format (eslint.config.js
).
This is only supported since ESLint version v8.21.0
, and will not become the
default format before major version 9.
Consult LICENSE.md
for license information.
This package is published on npm
.
After installing it, create an eslint.config.js
that re-exports this package's
default export:
// eslint.config.json
export default (await import("@kiridevs_configs/eslint")).default;
This package's default
export is an array of Flat Config objects.
To extend it, follow standard practice for the ESLint Flat Config format
(see https://eslint.org/docs/latest/use/configure/configuration-files-new):
// eslint.config.json
import kdConfig from "@kiridevs_configs/eslint";
export default [
{
// Allow 'debugger;' statements in CJS files
files: ["src/**/*.cjs"],
rules: {
"no-debugger": "off"
}
}, // Make sure your OVERrides are OVER the base config
...kdConfig // Spread array elements into this new array
];
FAQs
kiriDevs' default ESLint config (mainly made for Node18, using the new Flat Config format)
The npm package @kiridevs_configs/eslint receives a total of 0 weekly downloads. As such, @kiridevs_configs/eslint popularity was classified as not popular.
We found that @kiridevs_configs/eslint 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.