From cc097bb11086d453a0f58b53911908a7ae987c6c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 8 Nov 2025 23:34:49 +0000 Subject: [PATCH] chore: add `node_modules/` to skip-path in .checkov.yml * Updated the `.checkov.yml` configuration to include `node_modules/` in the skip-path section. * This change helps to avoid unnecessary checks on the `node_modules` directory during the validation process. --- .checkov.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.checkov.yml b/.checkov.yml index 7a49123..5de9e9f 100644 --- a/.checkov.yml +++ b/.checkov.yml @@ -3,3 +3,5 @@ skip-check: - CKV_DOCKER_3 - CKV_DOCKER_8 - CKV2_DOCKER_1 +skip-path: + - node_modules/