.pre-commit-config.yaml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # See https://pre-commit.com for more information
  2. # See https://pre-commit.com/hooks.html for more hooks
  3. exclude: "CHANGELOG.md"
  4. default_stages: [commit]
  5. ci:
  6. autofix_commit_msg: "chore(pre-commit.ci): auto fixes"
  7. autoupdate_commit_msg: "chore(pre-commit.ci): pre-commit autoupdate"
  8. repos:
  9. - repo: https://github.com/commitizen-tools/commitizen
  10. rev: v3.2.2
  11. hooks:
  12. - id: commitizen
  13. stages: [commit-msg]
  14. - repo: https://github.com/pre-commit/pre-commit-hooks
  15. rev: v4.5.0
  16. hooks:
  17. - id: debug-statements
  18. - id: check-builtin-literals
  19. - id: check-case-conflict
  20. - id: check-docstring-first
  21. - id: check-json
  22. - id: check-toml
  23. - id: check-xml
  24. - id: check-yaml
  25. - id: detect-private-key
  26. - id: end-of-file-fixer
  27. - id: trailing-whitespace
  28. - id: debug-statements
  29. - repo: https://github.com/pre-commit/mirrors-prettier
  30. rev: v3.1.0
  31. hooks:
  32. - id: prettier
  33. - repo: https://github.com/asottile/pyupgrade
  34. rev: v3.15.0
  35. hooks:
  36. - id: pyupgrade
  37. - repo: https://github.com/PyCQA/isort
  38. rev: 5.13.2
  39. hooks:
  40. - id: isort
  41. - repo: https://github.com/psf/black-pre-commit-mirror
  42. rev: 23.12.1
  43. hooks:
  44. - id: black
  45. - repo: https://github.com/codespell-project/codespell
  46. rev: v2.2.6
  47. hooks:
  48. - id: codespell