0.0.1 • Published 4 years ago

commitlint-config-velosodigital v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

commitlint-config-velosodigital

Shareable commitlint config used by Veloso Digital.

Getting started

Installing:

# npm
npm i -D commitlint-config-velosodigital

# yarn
yarn add -D commitlint-config-velosodigital

Apply the config to commitlint:

echo "module.exports = {extends: ['velosodigital']};" > commitlint.config.js

Examples

chore: (updating grunt tasks etc; no production code change)
ci: (updating grunt tasks etc; no production code change)
docs: (changes to the documentation)
feat: (new feature for the user, not a new feature for build script)
fix: (bug fix for the user, not a fix to a build script)
test: (adding missing tests, refactoring tests; no production code change)
refactor: (refactoring production code, eg. renaming a variable)