diff options
-rw-r--r-- | clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp | 5 | ||||
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/index.rst | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp b/clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp index e5a44fc9b9a..ab9d935120a 100644 --- a/clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp +++ b/clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp @@ -129,8 +129,9 @@ List all enabled checks and exit. Use with cl::init(false), cl::cat(ClangTidyCategory)); static cl::opt<bool> ExplainConfig("explain-config", cl::desc(R"( -for each enabled check explains, where it is enabled, i.e. in clang-tidy binary, -command line or a specific configuration file. +For each enabled check explains, where it is +enabled, i.e. in clang-tidy binary, command +line or a specific configuration file. )"), cl::init(false), cl::cat(ClangTidyCategory)); diff --git a/clang-tools-extra/docs/clang-tidy/index.rst b/clang-tools-extra/docs/clang-tidy/index.rst index ae399b56829..0db1c4f29e5 100644 --- a/clang-tools-extra/docs/clang-tidy/index.rst +++ b/clang-tools-extra/docs/clang-tidy/index.rst @@ -139,6 +139,10 @@ An overview of all the command-line options: -enable-check-profile - Enable per-check timing profiles, and print a report to stderr. + -explain-config - + For each enabled check explains, where it is + enabled, i.e. in clang-tidy binary, command + line or a specific configuration file. -export-fixes=<filename> - YAML file to store suggested fixes in. The stored fixes can be applied to the input source |