-
-
Notifications
You must be signed in to change notification settings - Fork 12
Feature/removeemojies #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Changes Unknown when pulling f2cc45b on feature/removeemojies into ** on master**. |
.sgcrc_default
Outdated
@@ -1,4 +1,5 @@ | |||
{ | |||
"emojies": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
readme says emojies is default false, we should change the readme to true, or here to false.
@@ -5,7 +5,8 @@ const choices = (configuration) => { | |||
const choicesList = []; | |||
|
|||
configuration.types.forEach((type) => { | |||
const emoji = `${type.emoji} ` || ''; | |||
const isEmojies = configuration.emojies === undefined ? true : configuration.emojies; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We do not have a emojies: false
in the sgc_defalut, so this means the documentation in the readme is wrong... because if emojies
is undefined, emojies = true
we need to cheange this to false or we have to change the readme to default true
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
README.md
Outdated
|
||
**Type:** `boolean` | ||
|
||
**Default:** `false` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see lib/promptConfig.js
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
In the
.sgcrc
the optionemojies
can be used to disable emojies in the commit. Forv2.0.0
we can disable emojies by default.