-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
50 lines (45 loc) · 1.62 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
48
49
50
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
exclude: 'docs|.git|.tox'
default_stages: [ commit ]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: detect-private-key
- id: fix-byte-order-marker
- id: check-yaml
- id: check-json
- id: check-toml
- id: check-xml
- id: check-symlinks
- id: check-case-conflict
- id: check-merge-conflict
- id: check-docstring-first
- id: check-added-large-files
args: [ "--maxkb=1024" ]
- id: check-executables-have-shebangs
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.7
hooks:
- id: ruff
args: [ --fix ]
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.7.1'
hooks:
- id: mypy
files: "ohmyadmin"
additional_dependencies:
- types-python-slugify
- starlette
- starlette_babel
- starlette_flash
- "sqlalchemy==2.0.0rc1"
- repo: https://github.com/myint/docformatter.git
rev: v1.7.5
hooks:
- id: docformatter
args: [ '--in-place', '--wrap-summaries=120', '--wrap-descriptions=120', '--pre-summary-newline' ]