Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@
*.ply filter=lfs diff=lfs merge=lfs -text
*.3ds filter=lfs diff=lfs merge=lfs -text
*.blend filter=lfs diff=lfs merge=lfs -text
*.gtlf filter=lfs diff=lfs merge=lfs -text
Comment thread
JWhitleyWork marked this conversation as resolved.
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exclude: ^src/external_dependencies/
repos:
# Standard hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
rev: v6.0.0
hooks:
- id: check-ast
- id: check-case-conflict
Expand All @@ -31,12 +31,12 @@ repos:
- id: fix-byte-order-marker

- repo: https://github.com/psf/black
rev: 22.3.0
rev: 25.9.0
hooks:
- id: black

- repo: https://github.com/codespell-project/codespell
rev: v2.0.0
rev: v2.4.1
hooks:
- id: codespell
args: ["--write-changes", "-L", "atleast,inout,ether"] # Provide a comma-separated list of misspelled words that codespell should ignore (for example: '-L', 'word1,word2,word3').
Expand All @@ -51,7 +51,7 @@ repos:
args: ["-fallback-style=none"]

- repo: https://github.com/adrienverge/yamllint
rev: v1.27.1
rev: v1.37.1
hooks:
- id: yamllint
args:
Expand All @@ -64,22 +64,22 @@ repos:
files: \.(yml|yaml)$

- repo: https://github.com/tcort/markdown-link-check
rev: v3.10.3
rev: v3.14.1
hooks:
- id: markdown-link-check

# NOTE: Broken on arm64. Will need to bump once https://github.com/hadolint/hadolint/issues/840 is fixed.
- repo: https://github.com/hadolint/hadolint
rev: v2.11.0
rev: v2.14.0
hooks:
- id: hadolint
name: "Lint Dockerfiles"
language: docker_image
types: ["dockerfile"]
entry: hadolint/hadolint:2.11.0 hadolint
entry: hadolint/hadolint:v2.14.0 hadolint

- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v3.1.0"
rev: "v4.0.0-alpha.8"
hooks:
# Use Prettier to lint XML files because, well.. its rules are prettier than most linters, as the name implies.
# Also we use it in the UI, so it's familiar.
Expand Down
Loading