commitplease
Advanced tools
Comparing version 2.0.0 to 2.1.0
@@ -26,3 +26,3 @@ var merge = require( "mout/object/merge" ), | ||
// Allow merge commits | ||
if ( /^Merge branch/.test( line ) ) { | ||
if ( /^Merge branch/.test( line ) || /^Merge [0-9a-f]+ into [0-9a-f]+/.test( line ) ) { | ||
return; | ||
@@ -29,0 +29,0 @@ } |
{ | ||
"name": "commitplease", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"description": "Validates strings as commit messages", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -5,3 +5,3 @@ # Commitplease | ||
This [node.js](http://nodejs.org/) module validates git commit messages while you commit, according to the rules specified in the [jQuery Commit Guidlines](http://contribute.jquery.org/commits-and-pull-requests/#commit-guidelines). These are pretty generic, so this module should be useful for most projects that care about commit message formats. | ||
This [node.js](http://nodejs.org/) module validates git commit messages while you commit, according to the rules specified in the [jQuery Commit Guidelines](http://contribute.jquery.org/commits-and-pull-requests/#commit-guidelines). These are pretty generic, so this module should be useful for most projects that care about commit message formats. | ||
@@ -8,0 +8,0 @@ ## Installation |
@@ -97,2 +97,5 @@ var validate = require( "./lib/validate" ), | ||
{ | ||
msg: "Merge e8d808b into f040453" | ||
}, | ||
{ | ||
msg: "fixup! for git to squash", | ||
@@ -99,0 +102,0 @@ options: testComponent |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14784
361