Enforce Conventional Commit Messages#16
Merged
samstreet merged 3 commits intoorchestr-sh:mainfrom Apr 5, 2026
Merged
Conversation
samstreet
approved these changes
Apr 5, 2026
9ac93a3 to
e063fa2
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces improvements to commit message standards and enforces them using git hooks and new dependencies. It updates the documentation to clarify commit conventions, adds configuration for commit linting, and modifies husky hook scripts to integrate linting and commit message checks.
Commit message standards and documentation:
CONTRIBUTING.md, including detailed conventional commit types, breaking change notation, and instructions for revert commits. [1] [2]Commit linting and git hooks:
commitlintconfiguration topackage.jsonto enforce conventional commit messages..husky/commit-msghook to runcommitlinton commit messages..husky/pre-commithook to runlint-stagedfor linting staged files.Dependency updates:
@commitlint/cliand@commitlint/config-conventionaltodevDependenciesfor commit message linting.@vitest/coverage-v8andvitestversions indevDependencies. [1] [2]