Skip to content

Commit

Permalink
[build] Exclude docs/node_modules/ and docs/.gradle/ from http check
Browse files Browse the repository at this point in the history
  • Loading branch information
chemicL committed Sep 10, 2024
1 parent d889b7a commit e3ff5cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}

Expand Down

0 comments on commit e3ff5cc

Please sign in to comment.