.pre-commit-config.yaml 391 B

1234567891011121314151617181920
  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. args: [--profile=black]
  9. - repo: https://github.com/psf/black
  10. rev: 23.11.0
  11. hooks:
  12. - id: black
  13. - repo: https://github.com/codespell-project/codespell
  14. rev: v2.2.6
  15. hooks:
  16. - id: codespell
  17. files: ^.*\.(py|md|rst|yml)$