Scanner Configuration
Excluding Files and Directories from Scans
By default, HoundDog.ai respects your .gitignore
file. To exclude additional files and folders, create a .hounddogignore
file at the root of your repository using the .gitignore pattern format. Here are some examples:
x
# Ignore the node_modules directory
node_modules/
# Ignore a specific file
config.js
# Ignore all files in the test directory
test/*