Skip to content

Commit 21772c7

Browse files
configure pre-commit so pre-commit.ci stops complaining (#557)
1 parent d1f8c2c commit 21772c7

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.pre-commit-config.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.0.1
4+
hooks:
5+
- id: check-ast
6+
- id: check-case-conflict
7+
- id: check-docstring-first
8+
- id: check-merge-conflict
9+
- id: check-symlinks
10+
- id: debug-statements
11+
12+
- repo: https://github.com/asottile/pyupgrade
13+
rev: v2.29.0
14+
hooks:
15+
- id: pyupgrade
16+
17+
- repo: https://github.com/psf/black
18+
rev: 21.9b0
19+
hooks:
20+
- id: black
21+
22+
- repo: https://github.com/PyCQA/flake8
23+
rev: 4.0.1
24+
hooks:
25+
- id: flake8
26+
27+
- repo: https://github.com/PyCQA/isort
28+
rev: 5.9.3
29+
hooks:
30+
- id: isort

0 commit comments

Comments
 (0)