I have several projects with many headers that I want to parse, but there are several headers which I do not want to parse with clang-tidy
My folder hierarchy is as follows
A\
|
|-B\
| |
| |-C\
| | |
| | └-coco.h
| └-D\
└-E\
My projects are inside C and D folders and I want them to parse all headers under B so my solution was HeaderFilterRegex: 'B/*' There are many headers that i want to include so I can't name each one.
however inside C and D folders there are several headers which I would like to exclude (for example coco.h).
I tried putting NO_LINT in the cpp that includes coco.h and that didn't help,
How Can I do this?
Thanks