aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/generateClangTidyChecks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/generateClangTidyChecks.py b/scripts/generateClangTidyChecks.py
index 627489521e..75a55329aa 100755
--- a/scripts/generateClangTidyChecks.py
+++ b/scripts/generateClangTidyChecks.py
@@ -150,9 +150,9 @@ def main():
process = subprocess.Popen([arguments.tidypath, '-checks=*', '-list-checks'], stdout=subprocess.PIPE)
lines = process.stdout.read().splitlines()
lines.pop(0) # 'Enabled checks:'
- major_checks = ['android-', 'boost-', 'bugprone-', 'cert-', 'clang-analyzer-',
+ major_checks = ['abseil-', 'android-', 'boost-', 'bugprone-', 'cert-', 'clang-analyzer-',
'cppcoreguidelines-', 'fuchsia-', 'google-', 'hicpp-', 'llvm-', 'misc-', 'modernize-',
- 'mpi-', 'objc-', 'performance-', 'readability-']
+ 'mpi-', 'objc-', 'performance-', 'portability-', 'readability-', 'zircon-']
current_major = 0
major_groups = {}
for line in lines: