CommitProCommitPro is an open-source extension for Visual Studio Code. CommitPro helps you writing better git commit messages. As opposed to existing solutions, it runs and validates while you write your message and immediately shows you problems and provides fixes and completions. The extension runs as Language Server in an own process to support you using the full IDE features set like when your write code in a programming language. Here are the features that CommitPro provides:
UsageYou can start composing your commit message using the extension through the following ways:
FeaturesSyntax Highlighting #CommitPro uses its own commit message parser, which turns the message into an Abstract Syntax Tree (AST). This allows the extension to locate all parts of the message at any time and tell the IDE where to apply highlighting. It uses the Semantic Highlighting feature, which is slower than conventional highlighting, but allows more complex, context-based highlighting. Opt-In #In case your Syntax Highlighting is not working, you might use a theme which does not support semantic highlighting out of the box. In this case you can opt-in in your vscode-configuration.
Use the
Commitlint Support #You can configure CommitPro using commitlint configuration files. While commitlint is a JS-based library, CommitPro will pick up your If you want to tweak the validation to your liking, you can start with this example
If you want your team to follow common guidelines, make sure you commit the configuration file and add CommitPro to recommended extension for this codebase. Autocompletion #According to your configuration and commits in your git history, CommitPro will provide completions for certain parts of your commit message. Quick Fixes #If not following your ruleset or the conventional commit format, CommitPro will provide quick fix actions to your IDE so you can quickly correct your message before committing. History Introspection #CommitPro takes a deep look into your git history to adapt to patterns and keeping your message style consistent with previous commits. Planned FeaturesTake a look at the GitHub Issues to get an overview of what features will be developed next. |