
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@web-bee-ru/commitlint-config
Advanced tools
Configurable commitlint config used by https://web-bee.ru/.
# npm
npm i -D @web-bee-ru/commitlint-config @commitlint/cli
After installing it, add commitlint.config.js into root of your project:
// commitlint.config.js
const makeConfig = require("@web-bee-ru/commitlint-config");
module.exports = makeConfig({
// @NOTE: uncomment to override defaults:
// commitTypes: [
// "feat", // @NOTE: implementation of functionality
// "fix", // @NOTE: bugfix
// "wip", // @NOTE: work in progress
// "ci", // @NOTE: continuous integration related issues
// "chore", // @NOTE: should be moved in the starter-project
// ],
});
To lint commits before they are created, install Husky and use the 'commit-msg' hook.
# Npm
npm i -D husky@7
Initialize husky
# Npm
npx husky-init
Add script to package.json
{
"scripts": {
"prepare": "husky install"
}
}
Create .husky/commit-msg hook file
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
npx commitlint --edit $1
You can create a .huskyrc file or add to your package.json the following code for
{
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}
FAQs
Shareable commitlint config used by web-bee.ru
The npm package @web-bee-ru/commitlint-config receives a total of 33 weekly downloads. As such, @web-bee-ru/commitlint-config popularity was classified as not popular.
We found that @web-bee-ru/commitlint-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.