vivaxy / vscode-conventional-commits

💬Conventional Commits for VSCode.
https://marketplace.visualstudio.com/items?itemName=vivaxy.vscode-conventional-commits
MIT License
323 stars 35 forks source link

[FEAT] Add customization options for title of commit #325

Open mattpsvreis opened 1 year ago

mattpsvreis commented 1 year ago

Is your feature request related to a problem? Please describe

Not really.

Describe the solution you'd like

When we use the extension today we get something like:

refactor: 💄 Refactoring something

But I'd like to be able to do this:

[REFACTOR]: 💄 Refactoring something

What I basically mean is, there should be a config option where we can customize the pre-defined strings that the extension already embeds into the commit message, if that makes sense.

Describe alternatives you've considered

N/A

Additional context

N/A

kevinah95 commented 3 months ago

Based on Conventional Commit Specification the square brackets [] are not part of the Conventional Commit message. If you want, you can use a scope:

A scope MAY be provided after a type. A scope MUST consist of a noun describing a section of the codebase surrounded by parenthesis, e.g., fix(parser):