-
Notifications
You must be signed in to change notification settings - Fork 264
/
Copy path.pre-commit-config.yaml
47 lines (40 loc) · 1.09 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/python-poetry/poetry
rev: 1.8.5
hooks:
- id: poetry-check
- id: poetry-lock
pass_filenames: false
args:
- --no-update
# - repo: https://github.com/ambv/black
# rev: 22.3.0
# hooks:
# - id: black
# language_version: python3
# args: [--config=pyproject.toml]
# - repo: https://github.com/pre-commit/pre-commit-hooks
# rev: v3.3.0
# hooks:
# - id: trailing-whitespace
# - id: end-of-file-fixer
# - repo: https://github.com/MarcoGorelli/absolufy-imports
# rev: v0.3.1
# hooks:
# - id: absolufy-imports
# - repo: https://github.com/pycqa/flake8
# rev: 5.0.4
# hooks:
# - id: flake8
# args: [--config=.flake8]
# - repo: https://github.com/pycqa/isort
# rev: 5.12.0
# hooks:
# - id: isort
# args: [--settings-path=pyproject.toml]
# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: v0.790
# hooks:
# - id: mypy
# language: system
# args: [--config-file=mypy.ini]