Skip to content

Commit

Permalink
upgrade: .gitignore for fvm
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanfei-1 committed Apr 1, 2024
1 parent 31a62ee commit 3262b64
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,6 @@ macos/Podfile.lock
windows/.vs
windows/out
ios/fastlane/Matchfile

# FVM Version Cache
.fvm/

1 comment on commit 3262b64

@w568w
Copy link
Member

@w568w w568w commented on 3262b64 Apr 2, 2024

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: 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.

Please sign in to comment.