-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
.pre-commit-config.yaml
38 lines (38 loc) · 1.39 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
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: check-added-large-files
- id: check-docstring-first
- id: check-merge-conflict
- id: end-of-file-fixer
- repo: https://github.com/ambv/black
rev: 22.12.0
hooks:
- id: black
language_version: python3.7
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910
hooks:
- name: Run mypy static analysis tool
id: mypy
files: src
additional_dependencies:
- pydantic
args:
- --no-warn-unused-ignores
- --ignore-missing-imports
# Only in this pre-commit hook, it is necessary to set this argument, it is working as intended in the normal `pdm run mypy` run:
# mypy doesn't pick up the pyproject.toml configuration in the pre-commit hook, which already has this option enabled
- --allow-untyped-decorators
# Only in this pre-commit hook, it is working as intended in the normal `pdm run mypy` run:
# mypy doesn't recognize the ConfigSchema type and gives the error
# Class cannot subclass "ConfigSchema" (has type "Any")
- --allow-subclassing-any
- repo: https://github.com/flakeheaven/flakeheaven
rev: 0.11.1
hooks:
- name: Run flakeheaven static analysis tool
id: flakeheaven