Skip to content
Open
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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
repos:
# Pre-commit hooks for general files
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
exclude: '^(website/|node_modules/|\.venv/|\.git/|\.vscode/|\.ruff_cache/|build/|dist/|\.nyc_output/|coverage/|\.final_nyc_output/)'
Expand All @@ -21,13 +21,13 @@ repos:
exclude: '^(website/|node_modules/|\.venv/|\.git/|\.vscode/|\.ruff_cache/|build/|dist/|\.nyc_output/|coverage/|\.final_nyc_output/)'

- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.105.0
rev: v1.108.1
hooks:
- id: terraform_fmt
exclude: '^(website/|node_modules/|\.venv/|\.git/|\.vscode/|\.ruff_cache/|build/|dist/|\.nyc_output/|coverage/|\.final_nyc_output/)'

- repo: https://github.com/aws-cloudformation/cfn-lint
rev: v1.43.2 # Check for latest version
rev: v1.53.3 # Check for latest version
hooks:
- id: cfn-lint
files: '.*-cf\.ya?ml$'
Expand All @@ -45,7 +45,7 @@ repos:
args: []

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.10
rev: v0.16.1
hooks:
- id: ruff
name: Ruff linting
Expand All @@ -56,7 +56,7 @@ repos:

# Markdown linting using the same library as package.json
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.47.0 # Using same version as in package.json
rev: v0.49.1 # Using same version as in package.json
hooks:
- id: markdownlint
files: '^(docs|tf-modules)/.*\.md$'
Expand Down
Loading