erenon / bazel_clang_tidy

Run clang-tidy on Bazel C++ targets directly, efficiently, with caching enabled
MIT License
109 stars 58 forks source link

Unsupported Flags List #12

Closed donkahlero closed 2 years ago

donkahlero commented 2 years ago

As well known, there are numerous flags that are not compatible with clang but are quite frequently used in gcc.

Hence, I modified the code to reflect that behavior. Of course there will be more flags as the user base of this code widens. This PR is only meant to give a framework that should be expanded upon.

However, I would be happy to add some more flags that are common/frequently used.

erenon commented 2 years ago

Thanks!