Skip to main content
All CollectionsConnect a Codebase
Exclude Files with a .driverignore
Exclude Files with a .driverignore

How to exclude content you don't want analyzed.

Updated over 3 weeks ago

If there are parts of your codebase you do not want analyzed, you can include a .driverignore file as part of your codebase to specify files, file types, and folders to exclude from processing.

The semantics are the same as .gitignore.

# Ignore a file:
directory_name/file_name.c

# Ignore a file type:
*.c

# Ignore an entire directory:
directory_name/

Did this answer your question?