You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The reason will be displayed to describe this comment to others. Learn more.
A suggestion: you should use chore: or to sign a commit that only does minor changes to non-code parts (e.g. changes on build scripts, .gitignore, CI scripts, etc.).
upgrade: or update: is usually used in a commit that upgrades dependency, Flutter SDK version. We also use update: for text translation updates.
misc: or change: is usually used in a commit that does minor changes to codes.
style: is for only code-style changes. E.g. you add some whitespaces or fix a typo.
refactor: is for code changes that have essentially and purposely improved code quality.
fix: is only used if you are really fixing some bugs in codes.
I have seen that you were abusing upgrade or change or fix for chore, change or fix or refactor for style, add for anything you added. Please try not to do those.
3262b64
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.
A suggestion: you should use
chore:
or to sign a commit that only does minor changes to non-code parts (e.g. changes on build scripts, .gitignore, CI scripts, etc.).upgrade:
orupdate:
is usually used in a commit that upgrades dependency, Flutter SDK version. We also useupdate:
for text translation updates.misc:
orchange:
is usually used in a commit that does minor changes to codes.style:
is for only code-style changes. E.g. you add some whitespaces or fix a typo.refactor:
is for code changes that have essentially and purposely improved code quality.fix:
is only used if you are really fixing some bugs in codes.I have seen that you were abusing
upgrade
orchange
orfix
forchore
,change
orfix
orrefactor
forstyle
,add
for anything you added. Please try not to do those.