1.0.0 • Published 4 years ago

commitlint-plugin-lastline v1.0.0

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

Footer last line

Introduction

Footer last line is a plugin extension for commitlint, which is a tool for linting commit messages.

If you want to learn more about structured and convention-driven commit messages, see conventional commits

Sample configuration

module.exports = {
	extends: ['@commitlint/config-conventional'],
	plugins: ['lastline'],
	rules: {
		 'footer-last-line': [2, 'always', '^ticket #[\\d]{6}']
	}
};