[PATCH] D23471: [Documentation] Improve checks groups descriptions in clang-tidy/index.rst
Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 15 10:52:26 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL278686: [Documentation] Improve checks groups descriptions in clang-tidy/index.rst (authored by eugenezelenko).
Changed prior to commit:
https://reviews.llvm.org/D23471?vs=67926&id=68050#toc
Repository:
rL LLVM
https://reviews.llvm.org/D23471
Files:
clang-tools-extra/trunk/docs/clang-tidy/index.rst
Index: clang-tools-extra/trunk/docs/clang-tidy/index.rst
===================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/index.rst
+++ clang-tools-extra/trunk/docs/clang-tidy/index.rst
@@ -50,25 +50,24 @@
There are currently the following groups of checks:
-* Checks related to the LLVM coding conventions have names starting with
- ``llvm-``.
+====================== =========================================================
+Name prefix Description
+====================== =========================================================
+``boost-`` Checks related to Boost library.
+``cert-`` Checks related to CERT Secure Coding Guidelines.
+``cppcoreguidelines-`` Checks related to C++ Core Guidelines.
+``clang-analyzer-`` Clang Static Analyzer checks.
+``google-`` Checks related to the Google coding conventions.
+``llvm-`` Checks related to the LLVM coding conventions.
+``misc-`` Checks that we didn't have a better category for.
+``modernize-`` Checks that advocate usage of modern (currently "modern"
+ means "C++11") language constructs.
+``mpi-`` Checks related to MPI (Message Passing Interface).
+``performance-`` Checks that target performance-related issues.
+``readability-`` Checks that target readability-related issues that don't
+ relate to any particular coding style.
+====================== =========================================================
-* Checks related to the Google coding conventions have names starting with
- ``google-``.
-
-* Checks named ``modernize-*`` advocate the usage of modern (currently "modern"
- means "C++11") language constructs.
-
-* The ``readability-`` checks target readability-related issues that don't
- relate to any particular coding style.
-
-* Checks with names starting with ``misc-`` the checks that we didn't have a
- better category for.
-
-* Clang static analyzer checks are named starting with ``clang-analyzer-``.
-
-* Checks related to Boost library starts with ``boost-``.
-
Clang diagnostics are treated in a similar way as check diagnostics. Clang
diagnostics are displayed by clang-tidy and can be filtered out using
``-checks=`` option. However, the ``-checks=`` option does not affect
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23471.68050.patch
Type: text/x-patch
Size: 2379 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20160815/ebf3cbb3/attachment.bin>
More information about the cfe-commits
mailing list