-
Notifications
You must be signed in to change notification settings - Fork 9
/
.pre-commit-config.yaml
34 lines (33 loc) · 1.02 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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: requirements-txt-fixer
- id: name-tests-test
args: ['--django']
exclude: 'tests/helper_utils.py'
- repo: https://github.com/timothycrosley/isort.git
rev: 5.13.2
hooks:
- id: isort
args: ['--nis']
- repo: https://github.com/myint/docformatter.git
rev: v1.7.5
hooks:
- id: docformatter
args: ['--in-place', '--wrap-summaries=80', '--wrap-descriptions=80', '--pre-summary-newline']
- repo: https://github.com/MarcoGorelli/auto-walrus
rev: 0.3.4
hooks:
- id: auto-walrus
- repo: https://github.com/pre-commit/mirrors-yapf
rev: 'v0.32.0' # Use the sha / tag you want to point at
hooks:
- id: yapf
exclude: ^tests/TEST_INPUTS/.*$