Dear Maintainer,
I found a false positive report of file-references-package-build-path for a C++ header file
included in a package, which does not contain any path at all.
The string detected by data/files/build-path-regex in our case is inside this C++ comment:
/* Defined only if MRPT is being build/was built with precompiled
headers enabled */
I know it would be pretty complicated to discard C++ comments with a simple regex, but
a possible solution is to change the most generic regex:
^build/
to something more specific capturing names like real build paths, for example:
`build/mrpt-mtM7nO/` => `build/[:alpha:]*-[:alpha:]{6}` or alike?
Thanks,