-
Notifications
You must be signed in to change notification settings - Fork 9
/
.pre-commit-config.yaml
63 lines (57 loc) · 1.48 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
ci:
autofix_prs: false
# docker won't run on pre-commit CI, skip this to keep auto-updates of
# pre-commit hooks versions in this file
skip:
- clj-kondo-docker
- cljfmt-docker
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-builtin-literals
- id: check-executables-have-shebangs
- id: check-json
- id: check-merge-conflict
- id: check-symlinks
- id: check-toml
- id: check-yaml
args:
- --allow-multiple-documents
- id: destroyed-symlinks
- id: end-of-file-fixer
- id: detect-private-key
- id: mixed-line-ending
args:
- --fix=lf
- id: trailing-whitespace
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
hooks:
- id: flake8
args:
- --max-line-length=100
- --extend-ignore=E203
- --exclude=data.py
- repo: https://github.com/asottile/pyupgrade
rev: v3.19.0
hooks:
- id: pyupgrade
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
hooks:
- id: mypy
additional_dependencies:
- types-PyYAML
- types-requests
- repo: https://github.com/clj-kondo/clj-kondo
rev: v2024.11.14
hooks:
- id: clj-kondo-docker
- repo: https://github.com/nikromen/cljfmt-docker
rev: v0.9.1
hooks:
- id: cljfmt-docker
args: [ check ]