-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
44 lines (40 loc) · 1.13 KB
/
.pre-commit-config.yaml
File metadata and controls
44 lines (40 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
default_language_version:
python: "python3"
fail_fast: true
repos:
- repo: "https://github.com/pre-commit/pre-commit-hooks"
rev: "v4.2.0"
hooks:
- id: "check-added-large-files"
- id: "check-ast"
- id: "check-byte-order-marker"
- id: "check-docstring-first"
- id: "check-executables-have-shebangs"
- id: "check-json"
- id: "check-symlinks"
- id: "check-merge-conflict"
- id: "check-vcs-permalinks"
- id: "check-xml"
- id: "check-yaml"
- id: "debug-statements"
- id: "end-of-file-fixer"
exclude: .+\.ipynb|tests/data/.+
- id: "trailing-whitespace"
exclude: .+\.ipynb|tests/data/.+
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
hooks:
- id: python-check-blanket-noqa
- id: python-check-blanket-type-ignore
- id: python-use-type-annotations
- repo: "https://github.com/asottile/reorder_python_imports"
rev: "v3.1.0"
hooks:
- id: "reorder-python-imports"
args:
- "--py39-plus"
- repo: "https://github.com/psf/black"
rev: "22.3.0"
hooks:
- id: "black"