-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
46 lines (46 loc) · 1.17 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-json
- id: check-merge-conflict
- id: check-symlinks
- id: check-toml
- id: debug-statements
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: local
hooks:
- id: black
name: black
entry: .tox/py39-codestyle/bin/black
language: system
types: [ python ]
- id: check-manifest
name: check-manifest
entry: check-manifest
language: system
pass_filenames: false
files: ^MANIFEST\.in$
- id: flake8
name: flake8
entry: .tox/py39-codestyle/bin/flake8
language: system
types: [ python ]
- id: isort
name: isort
entry: .tox/py39-codestyle/bin/isort
language: system
types: [ python ]
- id: mypy
name: mypy
entry: .tox/py39-codestyle/bin/mypy --config-file setup.cfg
language: system
types: [ python ]
- id: pydocstyle
name: pydocstyle
entry: .tox/py39-codestyle/bin/pydocstyle
language: system
types: [ python ]