# Gitignore like ignore file, for ignoring certain files and folders in CppCheck.
# To use CppCheck with this file manually call "Python3 pipe/pipe.py cppcheckall"
# DO NOT cd to pipe when running the script then all relative paths will be wrong.

# Exclude all files in folder examplefolder
# examplefolder/*

# Exclude all files in folder and subfolders examplefolder
# examplefolder/**

# Exclude all files in folder examplefolder with extension "ext"
# examplefolder/*.ext

# Exclude all files in folder and subfolders examplefolder with extension "ext"
# examplefolder/**.ext

# Exclude specefic file:
# examplefolder/examplefile.ext

project/application/src/cli.c