[PATCH] D64454: [clang-tidy] Adding static analyzer check to list of clang-tidy checks

Aaron Ballman via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Jul 11 13:51:18 PDT 2019


aaron.ballman added inline comments.


================
Comment at: clang-tools-extra/docs/clang-tidy/checks/gen-static-analyzer-docs.py:67
+  with open(os.path.join(__location__, checker["FullPackageName"]+".rst"),"w") as f:
+    f.write(".. title:: clang-tidy - %s\n" % checker["FullPackageName"])
+    f.write("\n")
----------------
For our other aliased checks, we usually add:
```
.. meta::
   :http-equiv=refresh: 5;URL=whatever.html
```
so that the redirect is automatic. I think we should probably retain that here as well, WDYT?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64454/new/

https://reviews.llvm.org/D64454





More information about the cfe-commits mailing list