https://github.com/marionebl/commitlint/blob/031ab00c06c5069748b61996cc9411b12a12ca73/%40commitlint/is-ignored/src/index.js#L6  It should be `false`. --- [Original Regexp](https://bit.ly/2o2HGsB) ``` ^(Merge pull request)|(Merge (.*?) into (.*?)|(Merge branch (.*?))(?:\r?\n)*$) ```  --- [Correct Regexp](https://bit.ly/2NaDAcJ) ``` ^((Merge pull request)|(Merge (.*?) into (.*?)|(Merge branch (.*?)))(?:\r?\n)*$) ``` 
https://github.com/marionebl/commitlint/blob/031ab00c06c5069748b61996cc9411b12a12ca73/%40commitlint/is-ignored/src/index.js#L6
It should be
false.Original Regexp
Correct Regexp