.pre-commit-config.yaml 588 B

12345678910111213141516171819
  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: debug-statements
  9. - id: end-of-file-fixer
  10. - id: flake8
  11. - id: name-tests-test
  12. exclude: 'tests/integration/testcases.py'
  13. - id: requirements-txt-fixer
  14. - id: trailing-whitespace
  15. - repo: git://github.com/asottile/reorder_python_imports
  16. sha: 3d86483455ab5bd06cc1069fdd5ac57be5463f10
  17. hooks:
  18. - id: reorder-python-imports
  19. language_version: 'python2.7'