Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

.pre-commit-config.yaml 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # Define hooks for code formations
  2. # Will be applied on any updated commit files if a user has installed and linked commit hook
  3. default_language_version:
  4. python: python3.8
  5. # Define bot property if installed via https://github.com/marketplace/pre-commit-ci
  6. ci:
  7. autofix_prs: true
  8. autoupdate_commit_msg: '[pre-commit.ci] pre-commit suggestions'
  9. autoupdate_schedule: quarterly
  10. # submodules: true
  11. repos:
  12. - repo: https://github.com/pre-commit/pre-commit-hooks
  13. rev: v4.1.0
  14. hooks:
  15. - id: end-of-file-fixer
  16. - id: trailing-whitespace
  17. - id: check-case-conflict
  18. - id: check-yaml
  19. - id: check-toml
  20. - id: pretty-format-json
  21. - id: check-docstring-first
  22. - repo: https://github.com/asottile/pyupgrade
  23. rev: v2.31.0
  24. hooks:
  25. - id: pyupgrade
  26. args: [--py36-plus]
  27. name: Upgrade code
  28. - repo: https://github.com/PyCQA/isort
  29. rev: 5.10.1
  30. hooks:
  31. - id: isort
  32. name: Sort imports
  33. # TODO
  34. #- repo: https://github.com/pre-commit/mirrors-yapf
  35. # rev: v0.31.0
  36. # hooks:
  37. # - id: yapf
  38. # name: formatting
  39. # TODO
  40. #- repo: https://github.com/executablebooks/mdformat
  41. # rev: 0.7.7
  42. # hooks:
  43. # - id: mdformat
  44. # additional_dependencies:
  45. # - mdformat-gfm
  46. # - mdformat-black
  47. # - mdformat_frontmatter
  48. # TODO
  49. #- repo: https://github.com/asottile/yesqa
  50. # rev: v1.2.3
  51. # hooks:
  52. # - id: yesqa
  53. - repo: https://github.com/PyCQA/flake8
  54. rev: 4.0.1
  55. hooks:
  56. - id: flake8
  57. name: PEP8