-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.pre-commit-config.yaml
47 lines (47 loc) · 1.08 KB
/
.pre-commit-config.yaml
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
45
46
47
repos:
#- repo: https://github.com/terrencepreilly/darglint
# rev: v1.5.8
# hooks:
# - id: darglint
# files: pqlite/
# exclude: docs/
# args:
# - --message-template={path}:{line} {msg_id} {msg}
# - -s=sphinx
# - -z=full
# - -v=2
#- repo: https://github.com/pycqa/pydocstyle
# rev: 5.1.1 # pick a git hash / tag to point to
# hooks:
# - id: pydocstyle
# files: pqlite/
# exclude: docs/
# args:
# - --select=D101,D102,D103
- repo: https://github.com/timothycrosley/isort
rev: 5.8.0
hooks:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/ambv/black
# rev: 20.8b1
rev: 22.3.0
hooks:
- id: black
types: [python]
exclude: docs/
args:
- -S
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: trailing-whitespace
- id: check-yaml
- id: end-of-file-fixer
- id: requirements-txt-fixer
- id: double-quote-string-fixer
- id: check-merge-conflict
- id: fix-encoding-pragma
args: ["--remove"]
- id: mixed-line-ending
args: ["--fix=lf"]