We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed32ea commit 363c997Copy full SHA for 363c997
src/index.js
@@ -27,9 +27,9 @@ function start() {
27
28
// Create regular expression
29
const reg = {
30
- author: new RegExp(authors.join('|'), 'gim'),
31
- include: new RegExp(includes.join('|'), 'gim'),
32
- exclude: new RegExp(excludes.join('|'), 'gim'),
+ author: new RegExp(authors.join('|'), 'im'),
+ include: new RegExp(includes.join('|'), 'im'),
+ exclude: new RegExp(excludes.join('|'), 'im'),
33
}
34
35
// The reports use repo to split paragraphs
0 commit comments