1.0.2 • Published 6 years ago

es-commit-msg-validator v1.0.2

Weekly downloads
11
License
MIT
Repository
-
Last release
6 years ago

es-commit-msg-validator

Validates that your commit message follows this format:

<type>: <subject>
TypeComment
featnew feature
fixbug fix
testunit test,FT,AT etc
docsdocuments
refactorcode refactor

By default, you also need to provide a redmine ticket number for 'feat' and 'fix'

<type>: #<redmine id> <subject>

feat: #12345 add new api for creating user
fix: #12344 fix login page js error

Disable redmine tikect check:

create .vcmrc in the same folder where package.json located with content:

{
"disableTicketCheck": true
}