-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
42 lines (37 loc) · 997 Bytes
/
.pre-commit-config.yaml
File metadata and controls
42 lines (37 loc) · 997 Bytes
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
repos:
- repo: https://github.com/psf/black
rev: bf7a162
hooks:
- id: black
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: f71fa2c
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: debug-statements
language_version: python3
- repo: https://github.com/PyCQA/flake8
rev: b9a7794
hooks:
- id: flake8
language_version: python3
- repo: https://github.com/asottile/reorder-python-imports
rev: b5d69d1
hooks:
- id: reorder-python-imports
- repo: https://github.com/codespell-project/codespell
rev: ec0f41b
hooks:
- id: codespell
additional_dependencies:
- tomli
- repo: https://github.com/pre-commit/mirrors-mypy
rev: bd424e4
hooks:
- id: mypy
additional_dependencies:
- "types-PyYAML"
- "types-cachetools"
- "types-requests"