├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── create-release.yml ├── .gitignore ├── .golangci.yaml ├── .gommit.toml ├── .goreleaser.yaml ├── LICENSE ├── README.md ├── cmd ├── check.go ├── check_commit.go ├── check_commit_test.go ├── check_message.go ├── check_message_test.go ├── check_range.go ├── check_range_test.go ├── check_test.go ├── exit.go ├── root.go ├── ui.go ├── version.go └── version_test.go ├── features ├── .gommit-no-examples.toml ├── .gommit-no-matchers.toml ├── .gommit-wrong-regexp.toml ├── .gommit.toml ├── bad-commit.sh ├── bad-summary-message-commit.sh ├── repo-teardown.sh └── repo.sh ├── go.mod ├── go.sum ├── gommit ├── gommit.go ├── gommit_test.go ├── version.go └── version_test.go ├── main.go └── reference ├── reference_history.go └── reference_history_test.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.gommit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/.gommit.toml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/README.md -------------------------------------------------------------------------------- /cmd/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/check.go -------------------------------------------------------------------------------- /cmd/check_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/check_commit.go -------------------------------------------------------------------------------- /cmd/check_commit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/check_commit_test.go -------------------------------------------------------------------------------- /cmd/check_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/check_message.go -------------------------------------------------------------------------------- /cmd/check_message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/check_message_test.go -------------------------------------------------------------------------------- /cmd/check_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/check_range.go -------------------------------------------------------------------------------- /cmd/check_range_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/check_range_test.go -------------------------------------------------------------------------------- /cmd/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/check_test.go -------------------------------------------------------------------------------- /cmd/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/exit.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/ui.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/version.go -------------------------------------------------------------------------------- /cmd/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/cmd/version_test.go -------------------------------------------------------------------------------- /features/.gommit-no-examples.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/features/.gommit-no-examples.toml -------------------------------------------------------------------------------- /features/.gommit-no-matchers.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/features/.gommit-no-matchers.toml -------------------------------------------------------------------------------- /features/.gommit-wrong-regexp.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/features/.gommit-wrong-regexp.toml -------------------------------------------------------------------------------- /features/.gommit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/features/.gommit.toml -------------------------------------------------------------------------------- /features/bad-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/features/bad-commit.sh -------------------------------------------------------------------------------- /features/bad-summary-message-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/features/bad-summary-message-commit.sh -------------------------------------------------------------------------------- /features/repo-teardown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/features/repo-teardown.sh -------------------------------------------------------------------------------- /features/repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/features/repo.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/go.sum -------------------------------------------------------------------------------- /gommit/gommit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/gommit/gommit.go -------------------------------------------------------------------------------- /gommit/gommit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/gommit/gommit_test.go -------------------------------------------------------------------------------- /gommit/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/gommit/version.go -------------------------------------------------------------------------------- /gommit/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/gommit/version_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/main.go -------------------------------------------------------------------------------- /reference/reference_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/reference/reference_history.go -------------------------------------------------------------------------------- /reference/reference_history_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antham/gommit/HEAD/reference/reference_history_test.go --------------------------------------------------------------------------------