Skip to content

Commit

Permalink
✨ Feat: add emoji "catching", "catching"
Browse files Browse the repository at this point in the history
  • Loading branch information
gaoac committed Mar 25, 2020
1 parent 8090938 commit 2e83262
Show file tree
Hide file tree
Showing 6 changed files with 4,238 additions and 906 deletions.
4 changes: 3 additions & 1 deletion engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ module.exports = function(options) {
'What is the scope of this change (e.g. component or file name): (press enter to skip)',
default: options.defaultScope,
filter: function(value) {
return value.trim().toLowerCase();
return options.disableScopeLowerCase
? value.trim()
: value.trim().toLowerCase();
}
},
{
Expand Down
Loading

0 comments on commit 2e83262

Please sign in to comment.