We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ae32ea commit 3ffc9cfCopy full SHA for 3ffc9cf
1 file changed
.checkov.yaml
@@ -1,12 +1,6 @@
1
-# Checkov config: skip scanning third-party dependency folders
2
-# This prevents Checkov from analyzing files under node_modules and similar
3
-# which often include GitHub Actions/workflows belonging to dependencies.
4
-# See: https://www.checkov.io/ for configuration options.
5
-
6
-skip_paths:
7
- - "**/node_modules/**"
8
- - "**/.venv/**"
9
- - "**/.cache/**"
10
-# Optionally you can explicitly skip checks (not recommended globally)
11
-# skip_checks:
12
-# - CKV2_GHA_1
+# Checkov configuration
+# Skip scanning dependency directories and cache folders
+skip-path:
+ - node_modules
+ - .venv
+ - .cache
0 commit comments