Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH 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.
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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.