.pre-commit-config.yaml 358 B

12345678910111213141516171819
  1. ci:
  2. autoupdate_schedule: monthly
  3. repos:
  4. - repo: https://github.com/pycqa/isort
  5. rev: 5.12.0
  6. hooks:
  7. - id: isort
  8. - repo: https://github.com/psf/black
  9. rev: 23.7.0
  10. hooks:
  11. - id: black
  12. - repo: https://github.com/codespell-project/codespell
  13. rev: v2.2.5
  14. hooks:
  15. - id: codespell
  16. files: ^.*\.(py|md|rst|yml)$