diff --git a/.vscode/settings.json b/.vscode/settings.json index 286e718..fe29dae 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,17 +8,15 @@ "editor.tabCompletion": "on", "editor.snippetSuggestions": "inline", "conventional-branch.type": [ - "build", - "ci", - "docs", - "feat", - "fix", - "refactor", - "style", - "test", - "chore", - "revert", - "perf" + "build", // Changes that affect the build system or external dependencies + "ci", // Changes to our CI configuration files and scripts + "docs", // Documentation only changes + "feat", // A new feature + "fix", // A bug fix + "refactor", // A code change that neither fixes a bug nor adds a feature + "style", // Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) + "test", // Adding missing tests or correcting existing tests + "chore", // Misc things, like renaming or deleting files ], "conventional-branch.format": "{Type}/{Branch}", "files.insertFinalNewline": true,