-
Notifications
You must be signed in to change notification settings - Fork 79
/
.pre-commit-config.yaml
102 lines (95 loc) · 2.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-json
- id: check-case-conflict
- id: check-toml
- id: check-merge-conflict
- id: check-xml
- id: check-yaml
- id: end-of-file-fixer
- id: check-symlinks
- id: mixed-line-ending
- id: fix-encoding-pragma
args:
- --remove
- id: pretty-format-json
args:
- --autofix
- id: requirements-txt-fixer
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
- id: python-check-blanket-noqa
- id: python-check-mock-methods
- id: python-no-eval
- id: python-no-log-warn
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
hooks:
- id: isort
name: Run isort to sort imports
files: \.py$
# To keep consistent with the global isort skip config defined in setup.cfg
exclude: ^build/.*$|^.tox/.*$|^venv/.*$
args:
- --lines-after-imports=2
- --profile=black
- repo: local
hooks:
- id: no-shebang
language: pygrep
name: Do not use shebangs in non-executable files
description: Only executable files should have shebangs (e.g. '#!/usr/bin/env python')
entry: "#!/"
pass_filenames: true
exclude: bin|cli|manage.py|app.py|setup.py|docs|test_data.py
files: \.py$
- repo: https://github.com/ikamensh/flynt/
rev: 1.0.1
hooks:
- id: flynt
exclude: ^build/.*$|^.tox/.*$|^venv/.*$
files: \.py$
args:
- --quiet
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.5
hooks:
- id: ruff
types_or: [python,pyi]
args:
- --fix
- --select=B,C,E,F,W
- --ignore=C901,E203,E402,E501,W391,E261
- id: ruff-format
types_or: [python,pyi]
args:
- --target-version=py311
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.0
hooks:
- id: mypy
- repo: https://github.com/Riverside-Healthcare/djLint
rev: v1.34.1
hooks:
- id: djlint-reformat
pass_filenames: false
args:
- OpenOversight/app/templates
- --format-css
- --profile=jinja
- --indent=2
- --quiet
- id: djlint
require_serial: true
pass_filenames: false
args:
- OpenOversight/app/templates
- --profile=jinja
- --use-gitignore
- --ignore=H006,T028,H031,H011