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/