diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b64525ddd8..8a97da8862 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,7 +21,7 @@ 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: @@ -29,7 +29,7 @@ repos: # Autoformat: Python code - repo: https://github.com/psf/black-pre-commit-mirror - rev: 25.9.0 + rev: 25.11.0 hooks: - id: black args: @@ -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: @@ -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 diff --git a/tools/templates/yamllint-config.yaml b/tools/templates/yamllint-config.yaml index ade69db121..3969dde9b0 100644 --- a/tools/templates/yamllint-config.yaml +++ b/tools/templates/yamllint-config.yaml @@ -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".