We are on Java Spring project and we need to validate commit message if it is suitable to commit convention which is expressed by Commit Guideline or Conventional Commits
I know there is a git hook(commit-msg) for this but I don't think I am able to check all conditions on above links and if I write these conditions I am not sure everyone who pulls my changes will be effected with these changes.
What I want is something like Husky for Java projects.