We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad5fab9 commit e49a9cdCopy full SHA for e49a9cd
build/scripts/clang_tidy_arch.py
@@ -15,7 +15,7 @@ def main():
15
inputs = unknown_args
16
result_json = {}
17
for inp in inputs:
18
- if os.path.exists(inp) and inp.endswith(".tidyjson"):
+ if inp.endswith(".tidyjson") and not inp.endswith(".global.tidyjson") and os.path.exists(inp):
19
with open(inp, 'r') as afile:
20
file_content = afile.read().strip()
21
if not file_content:
0 commit comments