Advertisement
Mochinov

Untitled

Jun 1st, 2023
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. # See https://pre-commit.com for more information
  2. # See https://pre-commit.com/hooks.html for more hooks
  3. repos:
  4. - repo: https://github.com/pre-commit/pre-commit-hooks
  5. rev: v4.3.0
  6. hooks:
  7. - id: trailing-whitespace
  8. - id: end-of-file-fixer
  9. - id: check-yaml
  10. - id: check-added-large-files
  11.  
  12. # - repo: https://github.com/psf/black
  13. # rev: "22.3.0"
  14. # hooks:
  15. # - id: black
  16.  
  17. - repo: https://github.com/PyCQA/isort
  18. rev: "5.10.1"
  19. hooks:
  20. - id: isort
  21.  
  22. # - repo: https://github.com/PyCQA/flake8
  23. # rev: "4.0.1"
  24. # hooks:
  25. # - id: flake8
  26.  
  27. - repo: https://github.com/asottile/pyupgrade
  28. rev: "v2.34.0"
  29. hooks:
  30. - id: pyupgrade
  31. args: [ --py37-plus ]
  32.  
  33. - repo: https://github.com/floatingpurr/sync_with_poetry
  34. rev: 0.2.1
  35. hooks:
  36. - id: sync_with_poetry
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement