forked from amazon-far/holosoma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
31 lines (31 loc) · 933 Bytes
/
.pre-commit-config.yaml
File metadata and controls
31 lines (31 loc) · 933 Bytes
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
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.8
hooks:
- id: ruff
args: [ --fix ]
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.14.1
hooks:
- id: mypy
pass_filenames: true
additional_dependencies: [pydantic]
exclude: ^src/holosoma_inference/
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v20.1.3
hooks:
- id: clang-format
files: \.(c|cc|cxx|cpp|frag|glsl|h|hpp|hxx|ih|ispc|ipp|java|m|mm|proto|textproto|vert|cu)$
exclude: ^generated/.*$
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: end-of-file-fixer
# exclude .dae, .obj, .mtl, .stl files
exclude: \.(dae|obj|mtl|stl)$
- id: trailing-whitespace
exclude: \.(dae|obj|mtl|stl)$
- id: mixed-line-ending
args: [--fix=lf] # Ensures consistent line endings (LF) and removes CR
exclude: \.(dae|obj|mtl|stl)$