Skip to content

Commit e98d29d

Browse files
committedFeb 21, 2017
Added fix-encoding-pragma and reorder-python-imports pre-commit hooks
1 parent ab69588 commit e98d29d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+107
-41
lines changed
 

‎.pre-commit-config.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,15 @@
77
- --ignore=E309,E501
88
- id: check-json
99
- id: check-yaml
10+
- id: fix-encoding-pragma
1011
- id: debug-statements
1112
- id: end-of-file-fixer
1213
- id: flake8
1314
- id: name-tests-test
1415
- id: trailing-whitespace
1516
- id: requirements-txt-fixer
1617
files: requirements-dev.txt
18+
- repo: git://github.com/asottile/reorder_python_imports
19+
sha: v0.3.1
20+
hooks:
21+
- id: reorder-python-imports

‎bravado/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
# -*- coding: utf-8 -*-
12
version = '8.4.0'

0 commit comments

Comments
 (0)
Please sign in to comment.