From e3ff5cc105b0f8cb91cad108ecc60ea3763bceed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20J=C4=99drzejczyk?= Date: Tue, 10 Sep 2024 10:41:38 +0200 Subject: [PATCH] [build] Exclude docs/node_modules/ and docs/.gradle/ from http check --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 70502bb736..644ad82a33 100644 --- a/build.gradle +++ b/build.gradle @@ -90,7 +90,9 @@ ext { nohttp { source.exclude "docs/asciidoc/highlight/**" - source.exclude "**/build/reports/tests/**/*.html" + source.exclude "**/build/**" + source.exclude "docs/.gradle/**" + source.exclude "docs/node_modules/**" allowlistFile = project.file('codequality/nohttp/allowlist.lines') }