This packages defines the strict implementation of the HDNET Commit Message Guidelines from the HDNET Standard Recommendations (HSR-3) as npm package using commitlint through a shareable config.
-
Make sure you setup node >= 14
-
Install dependencies
$ npm i -D @commitlint/cli @hdnet/commitlint-config
- Create commitlint config (i.e.
commitlint.config.js
) and extend from @hdnet/commitlint-config:
module.exports = {
extends: '@hdnet',
parserPreset: {
parserOpts: {
// replace "PROJECT-" with your issue prefix
issuePrefixes: ['PROJECT-'],
},
},
}
- Add commitlint to you git hook configuration (i.e. using husky)
To setup current node version, you can use nvm (in this project a .nvmrc file is maintained).