Skip to content
Open
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
repos:
# Autoformat: Python code, syntax patterns are modernized
- repo: https://github.com/asottile/pyupgrade
rev: v3.21.0
rev: v3.21.2
hooks:
- id: pyupgrade
args:
- --py38-plus

# Autoformat: Python code
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.9.0
rev: 25.11.0
hooks:
- id: black
args:
Expand All @@ -49,7 +49,7 @@ repos:

# Autoformat: Bash scripts
- repo: https://github.com/lovesegfault/beautysh
rev: v6.4.1
rev: v6.4.2
hooks:
- id: beautysh
additional_dependencies:
Expand All @@ -61,7 +61,7 @@ repos:

# Autoformat: markdown, yaml (but not helm templates)
- repo: https://github.com/rbubley/mirrors-prettier
rev: v3.6.2
rev: v3.7.3
hooks:
- id: prettier

Expand Down
1 change: 1 addition & 0 deletions tools/templates/yamllint-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ rules:
indent-sequences: whatever # Default true (*)
line-length: disable # Default: { max: 80, ... }


# (*) toYaml's emitted sequences/lists will have no indentation and we have no
# control over it, so we compromise by setting "whatever".
Loading