We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91fb8c2 commit 1754771Copy full SHA for 1754771
.pre-commit-config.yaml
@@ -1,18 +1,23 @@
1
+repos:
2
- repo: git://github.com/pre-commit/pre-commit-hooks
- sha: v0.8.0
3
+ rev: v1.3.0
4
hooks:
- - id: autopep8-wrapper
5
- args:
6
- - -i
7
- - --ignore=E128,E309,E501
8
- exclude: ^docs/.*$
9
- id: check-json
10
- id: check-yaml
11
- id: debug-statements
12
- id: end-of-file-fixer
13
exclude: ^docs/.*$
14
- id: trailing-whitespace
+ exclude: README.md
15
- id: pretty-format-json
16
args:
17
- --autofix
18
- - --indent=4
+- repo: https://github.com/asottile/pyupgrade
+ rev: v1.2.0
+ hooks:
+ - id: pyupgrade
19
+- repo: https://github.com/ambv/black
20
+ rev: stable
21
22
+ - id: black
23
+ language_version: python3.6
0 commit comments