-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
executable file
·49 lines (49 loc) · 2.18 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
executable file
·49 lines (49 loc) · 2.18 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-merge-conflict
- id: detect-private-key
- id: detect-aws-credentials
args: [--allow-missing-credentials]
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.99.0
hooks:
- id: terraform_fmt
- id: terraform_docs
args:
- --args=--lockfile=false
files: ^(infra|blueprints)/.*\.tf$
- id: terraform_tflint
args:
- --args=--only=terraform_deprecated_interpolation
- --args=--only=terraform_deprecated_index
- --args=--only=terraform_unused_declarations
- --args=--only=terraform_comment_syntax
- --args=--only=terraform_documented_outputs
- --args=--only=terraform_documented_variables
- --args=--only=terraform_typed_variables
- --args=--only=terraform_module_pinned_source
- --args=--only=terraform_naming_convention
- --args=--only=terraform_required_version
- --args=--only=terraform_required_providers
- --args=--only=terraform_unused_required_providers
- --args=--only=terraform_workspace_remote
exclude: (nvidia-dynamo|nvidia-deep-research|workshops)
- id: terraform_validate
args:
# Parallel terraform init can cause problems when using a cache: https://github.com/hashicorp/terraform/issues/31964
# this task is running across all of the blueprints in the github checks and can cause failures for missing/corrupted dependencies
- --hook-config=--parallelism-limit=1
exclude: (docs|modules|nvidia-dynamo|nvidia-triton-server|nvidia-deep-research|workshops)
# https://github.com/trufflesecurity/trufflehog?tab=readme-ov-file#floppy_disk-installation
- repo: local
hooks:
- id: trufflehog
name: TruffleHog
description: Detect secrets in your data.
entry: bash -c 'trufflehog git file://. --since-commit HEAD --branch $(git rev-parse --abbrev-ref HEAD) --fail --no-update'
language: system
stages: ["pre-commit", "pre-push"]