Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

31 linhas
958 B

  1. # Always validate the PR title AND all the commits
  2. titleAndCommits: true
  3. # Allow use of Merge commits (eg on github: "Merge branch 'master' into feature/ride-unicorns")
  4. # this is only relevant when using commitsOnly: true (or titleAndCommits: true)
  5. allowMergeCommits: true
  6. # Allow use of Revert commits (eg on github: "Revert "feat: ride unicorns"")
  7. # this is only relevant when using commitsOnly: true (or titleAndCommits: true)
  8. allowRevertCommits: true
  9. # For allowed PR types: https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json
  10. # Tool Reference: https://github.com/zeke/semantic-pull-requests
  11. # By default types specified in commitizen/conventional-commit-types is used.
  12. # See: https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json
  13. # You can override the valid types
  14. types:
  15. - BREAKING CHANGE
  16. - feat
  17. - fix
  18. - docs
  19. - style
  20. - refactor
  21. - perf
  22. - test
  23. - build
  24. - ci
  25. - chore
  26. - revert