
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@vingle/commitlint-preset
Advanced tools
A common commitlint preset for TypeScript projects at Vingle.
This preset requires global npm dependency. Make sure commitizen is installed globally:
$ npm install commitizen -g
If you want to lint commit message via Git Hook to enforce commit message style in local dev environment, Follow these instructions.
In this setup, You'll need to install additional husky
dependency.
$ npm install @vingle/commitlint-preset husky --save-dev
Add the following to package.json
{
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@vingle/commitlint-preset"
]
}
}
Done. There is no any additional steps to check commit message. commitlint will be automatically executed every commits.
If you want to lint commit message via CI environment, Follow these instructions.
In this setup, husky
is not required.
Add the following to package.json
{
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@vingle/commitlint-preset"
]
}
}
Done. Please follow below steps to execute commitlint.
Add following to workflow.yml
steps:
- name: CommitLint
run: npx commitlint --from ${{ github.event.before || github.event.head || 'master' }} --verbose
Install additional dependency:
$ npm install @commitlint/travis-cli --save-dev
Add following to travis.yml
# travis.yml
language: node_js
script:
- commitlint-travis
Execute following to check commit message:
$ npx run commitlint --from [COMMIT_SHA1] --to [COMMIT_SHA1]
cz-cli
provides git extension to create semantic commits.
Simply use git cz
instead of using git commit
.
FAQs
commitlint rules for Vingle, Inc.
The npm package @vingle/commitlint-preset receives a total of 10 weekly downloads. As such, @vingle/commitlint-preset popularity was classified as not popular.
We found that @vingle/commitlint-preset demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 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
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.