|
| 1 | +- repo: [email protected]:mirrors/pre-commit/pre-commit-hooks |
| 2 | + sha: v0.9.1 |
| 3 | + hooks: |
| 4 | + - id: trailing-whitespace |
| 5 | + language_version: python3.6 |
| 6 | + - id: end-of-file-fixer |
| 7 | + language_version: python3.6 |
| 8 | + exclude: ^\.activate\.sh$ |
| 9 | + - id: autopep8-wrapper |
| 10 | + language_version: python3.6 |
| 11 | + - id: check-docstring-first |
| 12 | + language_version: python3.6 |
| 13 | + - id: check-executables-have-shebangs |
| 14 | + language_version: python3.6 |
| 15 | + - id: check-merge-conflict |
| 16 | + language_version: python3.6 |
| 17 | + - id: check-yaml |
| 18 | + language_version: python3.6 |
| 19 | + - id: debug-statements |
| 20 | + language_version: python3.6 |
| 21 | + - id: double-quote-string-fixer |
| 22 | + language_version: python3.6 |
| 23 | + - id: name-tests-test |
| 24 | + language_version: python3.6 |
| 25 | + - id: flake8 |
| 26 | + language_version: python3.6 |
| 27 | + - id: check-added-large-files |
| 28 | + language_version: python3.6 |
| 29 | + exclude: ^\.activate\.sh$ |
| 30 | + - id: check-byte-order-marker |
| 31 | + language_version: python3.6 |
| 32 | + - id: fix-encoding-pragma |
| 33 | + language_version: python3.6 |
| 34 | +- repo: [email protected]:mirrors/asottile/reorder_python_imports |
| 35 | + sha: v0.3.5 |
| 36 | + hooks: |
| 37 | + - id: reorder-python-imports |
| 38 | + language_version: python3.6 |
| 39 | + args: [ |
| 40 | + '--add-import', 'from __future__ import absolute_import', |
| 41 | + '--add-import', 'from __future__ import unicode_literals', |
| 42 | + ] |
| 43 | +- repo: [email protected]:mirrors/asottile/pyupgrade |
| 44 | + sha: v1.1.2-1 |
| 45 | + hooks: |
| 46 | + - id: pyupgrade |
| 47 | + language_version: python3.6 |
0 commit comments