.pre-commit-config.yaml 609 B

1234567891011121314151617181920
  1. - repo: git://github.com/pre-commit/pre-commit-hooks
  2. sha: 'v0.4.2'
  3. hooks:
  4. - id: check-added-large-files
  5. - id: check-docstring-first
  6. - id: check-merge-conflict
  7. - id: check-yaml
  8. - id: check-json
  9. - id: debug-statements
  10. - id: end-of-file-fixer
  11. - id: flake8
  12. - id: name-tests-test
  13. exclude: 'tests/integration/testcases.py'
  14. - id: requirements-txt-fixer
  15. - id: trailing-whitespace
  16. - repo: git://github.com/asottile/reorder_python_imports
  17. sha: 3d86483455ab5bd06cc1069fdd5ac57be5463f10
  18. hooks:
  19. - id: reorder-python-imports
  20. language_version: 'python2.7'