-
Notifications
You must be signed in to change notification settings - Fork 85
/
.pre-commit-config.yaml
43 lines (43 loc) · 1.13 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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
# This should be the _latest_ version of python supported by us
default_language_version:
python: python3.9
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: debug-statements
- id: detect-private-key
- repo: https://github.com/psf/black
rev: 22.12.0
hooks:
- id: black
files: ^(src|test|setup.py)/
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: isort (python)
- repo: https://github.com/pycqa/flake8
rev: 5.0.4
hooks:
- id: flake8
args:
- '--ignore=E203,E501,W503,F811'
- '--max-line-length=88'
- '--statistics'
- '--count'
- '--show-source'
- repo: https://github.com/pycqa/pydocstyle
rev: 6.1.1
hooks:
- id: pydocstyle
args:
- '--convention=google'
- '--add-ignore=D10,D212'
- '-v'
- '--count'