21#include "clang/Tooling/CommonOptionsParser.h"
22#include "llvm/ADT/StringSet.h"
23#include "llvm/Support/CommandLine.h"
24#include "llvm/Support/InitLLVM.h"
25#include "llvm/Support/PluginLoader.h"
26#include "llvm/Support/Process.h"
27#include "llvm/Support/Signals.h"
28#include "llvm/Support/TargetSelect.h"
29#include "llvm/Support/WithColor.h"
30#include "llvm/TargetParser/Host.h"
36static cl::desc
desc(StringRef Description) {
return {Description.ltrim()}; }
40static cl::extrahelp
CommonHelp(CommonOptionsParser::HelpMessage);
43 A large number of options or source files can be passed as parameter files
44 by use '@parameter-file' in the command line.
48 clang-tidy attempts to read configuration for each source file from a
49 .clang-tidy file located in the closest parent directory of the source
50 file. The .clang-tidy file is specified in YAML format. If any configuration
51 options have a corresponding command-line option, command-line option takes
54 The following configuration options may be used in a .clang-tidy file:
56 CheckOptions - List of key-value pairs defining check-specific
59 some-check.SomeOption: 'some value'
60 Checks - Same as '--checks'. Additionally, the list of
61 globs can be specified as a list instead of a
63 CustomChecks - Array of user defined checks based on
65 ExcludeHeaderFilterRegex - Same as '--exclude-header-filter'.
66 ExtraArgs - Same as '--extra-arg'.
67 ExtraArgsBefore - Same as '--extra-arg-before'.
68 FormatStyle - Same as '--format-style'.
69 HeaderFileExtensions - File extensions to consider to determine if a
70 given diagnostic is located in a header file.
71 HeaderFilterRegex - Same as '--header-filter'.
72 ImplementationFileExtensions - File extensions to consider to determine if a
73 given diagnostic is located in an
75 InheritParentConfig - If this option is true in a config file, the
76 configuration file in the parent directory
77 (if any exists) will be taken and the current
78 config file will be applied on top of the
80 RemovedArgs - Same as '--removed-arg'.
81 SystemHeaders - Same as '--system-headers'.
82 UseColor - Same as '--use-color'.
83 User - Specifies the name or e-mail of the user
84 running clang-tidy. This option is used, for
85 example, to place the correct user name in
86 TODO() comments in the relevant check.
87 WarningsAsErrors - Same as '--warnings-as-errors'.
89 The effective configuration can be inspected using --dump-config:
91 $ clang-tidy --dump-config
93 Checks: '-*,some-check'
95 HeaderFileExtensions: ['', 'h','hh','hpp','hxx']
96 ImplementationFileExtensions: ['c','cc','cpp','cxx']
97 HeaderFilterRegex: '.*'
99 InheritParentConfig: true
102 some-check.SomeOption: 'some value'
108 "clang-diagnostic-*";
110static cl::opt<std::string>
Checks(
"checks",
desc(R
"(
111Comma-separated list of globs with optional '-'
112prefix. Globs are processed in order of
113appearance in the list. Globs without '-'
114prefix add checks with matching names to the
115set, globs with the '-' prefix remove checks
116with matching names from the set of enabled
117checks. This option's value is appended to the
118value of the 'Checks' option in .clang-tidy
124Upgrades warnings to errors. Same format as
126This option's value is appended to the value of
127the 'WarningsAsErrors' option in .clang-tidy
134Regular expression matching the names of the
135headers to output diagnostics from. The default
136value is '.*', i.e. diagnostics from all non-system
137headers are displayed by default. Diagnostics
138from the main file of each translation unit are
140Can be used together with -line-filter.
141This option overrides the 'HeaderFilterRegex'
142option in .clang-tidy file, if any.
149Regular expression matching the names of the
150headers to exclude diagnostics from. Diagnostics
151from the main file of each translation unit are
153Must be used together with --header-filter.
154Can be used together with -line-filter.
155This option overrides the 'ExcludeHeaderFilterRegex'
156option in .clang-tidy file, if any.
162Display the errors from system headers.
163This option overrides the 'SystemHeaders' option
164in .clang-tidy file, if any.
169List of files and line ranges to output diagnostics from.
170The range is inclusive on both ends. Can be used together
171with -header-filter. The format of the list is a JSON
172array of objects. For example:
175 {"name":"file1.cpp","lines":[[1,3],[5,7]]},
179This will output diagnostics from 'file1.cpp' only for
180the line ranges [1,3] and [5,7], as well as all from the
186static cl::opt<bool>
Fix(
"fix",
desc(R
"(
187Apply suggested fixes. Without -fix-errors
188clang-tidy will bail out if any compilation
194Apply suggested fixes even if compilation
195errors were found. If compiler errors have
196attached fix-its, clang-tidy will apply them as
202If a warning has no fix, but a single fix can
203be found through an associated diagnostic note,
205Specifying this flag will implicitly enable the
211Style for formatting code around applied fixes:
212 - 'none' (default) turns off formatting
213 - 'file' (literally 'file', not a placeholder)
214 uses .clang-format file in the closest parent
216 - '{ <json> }' specifies options inline, e.g.
217 -format-style='{BasedOnStyle: llvm, IndentWidth: 8}'
218 - 'llvm', 'google', 'webkit', 'mozilla'
219See clang-format documentation for the up-to-date
220information about formatting styles and options.
221This option overrides the 'FormatStyle` option in
222.clang-tidy file, if any.
228List all enabled checks and exit. Use with
229-checks=* to list all available checks.
234For each enabled check explains, where it is
235enabled, i.e. in clang-tidy binary, command
236line or a specific configuration file.
240static cl::opt<std::string>
Config(
"config",
desc(R
"(
241Specifies a configuration in YAML/JSON format:
242 -config="{Checks: '*',
243 CheckOptions: {x: y}}"
244When the value is empty, clang-tidy will
245attempt to find a file named .clang-tidy for
246each source file in its parent directories.
251Specify the path of .clang-tidy or custom config file:
252 e.g. --config-file=/some/path/myTidyConfigFile
253This option internally works exactly the same way as
254 --config option after reading specified config file.
255Use either --config-file or --config, not both.
261Dumps configuration in the YAML format to
262stdout. This option can be used along with a
263file name (and '--' if the file is outside of a
264project with configured compilation database).
265The configuration used for this file will be
267Use along with -checks=* to include
268configuration of all checks.
273Enable per-check timing profiles, and print a
280By default reports are printed in tabulated
281format to stderr. When this option is passed,
282these per-TU profiles are instead stored as JSON.
284 cl::value_desc("prefix"),
292 cl::init(
false), cl::Hidden,
297Enables preprocessor-level module header parsing
298for C++20 and above, empowering specific checks
299to detect macro definitions within modules. This
300feature may cause performance and parsing issues
301and is therefore considered experimental.
307YAML file to store suggested fixes in. The
308stored fixes can be applied to the input source
309code with clang-apply-replacements.
311 cl::value_desc("filename"),
314static cl::opt<bool>
Quiet(
"quiet",
desc(R
"(
315Run clang-tidy in quiet mode. This suppresses
316printing statistics about ignored warnings and
317warnings treated as errors if the respective
318options are specified.
323Overlay the virtual filesystem described by file
324over the real file system.
326 cl::value_desc("filename"),
330Use colors in diagnostics. If not set, colors
331will be used if the terminal connected to
332standard output supports colors.
333This option overrides the 'UseColor' option in
334.clang-tidy file, if any.
339Check the config files to ensure each check and
340option is recognized without running any checks.
345Allow empty enabled checks. This suppresses
346the "no checks enabled" error when disabling
353Enable experimental clang-query based
355see https://clang.llvm.org/extra/clang-tidy/QueryBasedCustomChecks.html.
361List of arguments to remove from the command
362line sent to the compiler. Please note that
363removing arguments might change the semantic
364of the analyzed code, possibly leading to
365compiler errors, false positives or
366false negatives. This option is applied
367before --extra-arg and --extra-arg-before)"),
374 llvm::errs() <<
"Suppressed " << Stats.
errorsIgnored() <<
" warnings (";
375 StringRef Separator =
"";
382 <<
" due to line filter";
391 <<
" with check filters";
392 llvm::errs() <<
").\n";
394 llvm::errs() <<
"Use -header-filter=.* or leave it as default to display "
395 "errors from all non-system headers. Use -system-headers "
396 "to display errors from system headers as well.\n";
400static std::unique_ptr<ClangTidyOptionsProvider>
404 llvm::errs() <<
"Invalid LineFilter: " << Err.message() <<
"\n\nUsage:\n";
405 llvm::cl::PrintHelpMessage(
false,
true);
416 DefaultOptions.
User = llvm::sys::Process::GetEnv(
"USER");
418 if (!DefaultOptions.
User)
419 DefaultOptions.
User = llvm::sys::Process::GetEnv(
"USERNAME");
422 if (
Checks.getNumOccurrences() > 0)
434 if (
UseColor.getNumOccurrences() > 0)
440 [&](StringRef Configuration,
441 StringRef Source) -> std::unique_ptr<ClangTidyOptionsProvider> {
442 llvm::ErrorOr<ClangTidyOptions> ParsedConfig =
445 return std::make_unique<ConfigOptionsProvider>(
446 std::move(GlobalOptions),
448 std::move(*ParsedConfig), std::move(OverrideOptions), std::move(FS));
449 llvm::errs() <<
"Error: invalid configuration specified.\n"
450 << ParsedConfig.getError().message() <<
"\n";
455 if (
Config.getNumOccurrences() > 0) {
456 llvm::errs() <<
"Error: --config-file and --config are "
457 "mutually exclusive. Specify only one.\n";
461 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
Text =
463 if (
const std::error_code EC =
Text.getError()) {
464 llvm::errs() <<
"Error: can't read config-file '" <<
ConfigFile
465 <<
"': " << EC.message() <<
"\n";
469 return LoadConfig((*Text)->getBuffer(),
ConfigFile);
472 if (
Config.getNumOccurrences() > 0)
473 return LoadConfig(
Config,
"<command-line-config>");
475 return std::make_unique<FileOptionsProvider>(
476 std::move(GlobalOptions), std::move(DefaultOptions),
477 std::move(OverrideOptions), std::move(FS));
480static llvm::IntrusiveRefCntPtr<vfs::FileSystem>
481getVfsFromFile(
const std::string &OverlayFile, vfs::FileSystem &BaseFS) {
482 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> Buffer =
483 BaseFS.getBufferForFile(OverlayFile);
485 llvm::errs() <<
"Can't load virtual filesystem overlay file '"
486 << OverlayFile <<
"': " << Buffer.getError().message()
491 IntrusiveRefCntPtr<vfs::FileSystem> FS = vfs::getVFSFromYAML(
492 std::move(Buffer.get()),
nullptr, OverlayFile);
494 llvm::errs() <<
"Error: invalid virtual filesystem overlay file '"
495 << OverlayFile <<
"'.\n";
501static StringRef
closest(StringRef Value,
const StringSet<> &Allowed) {
502 unsigned MaxEdit = 5U;
504 for (
auto Item : Allowed.keys()) {
505 const unsigned Cur = Value.edit_distance_insensitive(Item,
true, MaxEdit);
516static bool verifyChecks(
const StringSet<> &AllChecks, StringRef CheckGlob,
519 bool AnyInvalid =
false;
520 for (
const auto &Item : Globs.getItems()) {
521 if (Item.Text.starts_with(
"clang-diagnostic"))
523 if (llvm::none_of(AllChecks.keys(),
524 [&Item](StringRef S) { return Item.Regex.match(S); })) {
526 if (Item.Text.contains(
'*')) {
527 llvm::WithColor::warning(llvm::errs(), Source)
528 <<
"check glob '" << Item.Text <<
"' doesn't match any known check"
531 llvm::raw_ostream &Output =
532 llvm::WithColor::warning(llvm::errs(), Source)
533 <<
"unknown check '" << Item.Text <<
'\'';
534 const llvm::StringRef Closest =
closest(Item.Text, AllChecks);
535 if (!Closest.empty())
536 Output <<
"; did you mean '" << Closest <<
'\'';
545 const std::vector<std::string> &HeaderFileExtensions,
546 const std::vector<std::string> &ImplementationFileExtensions,
548 bool AnyInvalid =
false;
549 for (
const auto &HeaderExtension : HeaderFileExtensions) {
550 for (
const auto &ImplementationExtension : ImplementationFileExtensions) {
551 if (HeaderExtension == ImplementationExtension) {
553 auto &Output = llvm::WithColor::warning(llvm::errs(), Source)
554 <<
"HeaderFileExtension '" << HeaderExtension <<
'\''
555 <<
" is the same as ImplementationFileExtension '"
556 << ImplementationExtension <<
'\'';
564static bool verifyOptions(
const llvm::StringSet<> &ValidOptions,
567 bool AnyInvalid =
false;
568 for (
auto Key : OptionMap.keys()) {
569 if (ValidOptions.contains(Key))
572 auto &Output = llvm::WithColor::warning(llvm::errs(), Source)
573 <<
"unknown check option '" <<
Key <<
'\'';
574 const llvm::StringRef Closest =
closest(Key, ValidOptions);
575 if (!Closest.empty())
576 Output <<
"; did you mean '" << Closest <<
'\'';
582static SmallString<256>
makeAbsolute(llvm::StringRef Input) {
585 SmallString<256> AbsolutePath(Input);
586 if (
const std::error_code EC = llvm::sys::fs::make_absolute(AbsolutePath)) {
587 llvm::errs() <<
"Can't make absolute path from " << Input <<
": "
588 << EC.message() <<
"\n";
593static llvm::IntrusiveRefCntPtr<vfs::OverlayFileSystem>
createBaseFS() {
594 llvm::IntrusiveRefCntPtr<vfs::OverlayFileSystem> BaseFS(
595 new vfs::OverlayFileSystem(vfs::getRealFileSystem()));
598 IntrusiveRefCntPtr<vfs::FileSystem> VfsFromFile =
602 BaseFS->pushOverlay(std::move(VfsFromFile));
608 const llvm::InitLLVM
X(argc, argv);
609 SmallVector<const char *> Args{argv, argv + argc};
612 llvm::BumpPtrAllocator Alloc;
613 llvm::cl::TokenizerCallback Tokenizer =
614 llvm::Triple(llvm::sys::getProcessTriple()).isOSWindows()
615 ? llvm::cl::TokenizeWindowsCommandLine
616 : llvm::cl::TokenizeGNUCommandLine;
617 llvm::cl::ExpansionContext ECtx(Alloc, Tokenizer);
618 if (llvm::Error Err = ECtx.expandResponseFiles(Args)) {
619 llvm::WithColor::error() << llvm::toString(std::move(Err)) <<
"\n";
622 argc =
static_cast<int>(Args.size());
626 if (cl::Option *LoadOpt = cl::getRegisteredOptions().
lookup(
"load"))
629 llvm::Expected<CommonOptionsParser> OptionsParser =
632 if (!OptionsParser) {
633 llvm::WithColor::error() << llvm::toString(OptionsParser.takeError());
637 const llvm::IntrusiveRefCntPtr<vfs::OverlayFileSystem> BaseFS =
643 auto *OptionsProvider = OwningOptionsProvider.get();
644 if (!OptionsProvider)
649 StringRef FileName(
"dummy");
650 auto PathList = OptionsParser->getSourcePathList();
651 if (!PathList.empty())
652 FileName = PathList.front();
654 const SmallString<256> FilePath =
makeAbsolute(FileName);
657 const std::vector<std::string> EnabledChecks =
663 std::vector<clang::tidy::ClangTidyOptionsProvider::OptionsSource>
664 RawOptions = OptionsProvider->getRawOptions(FilePath);
665 for (
const std::string &Check : EnabledChecks) {
666 for (
const auto &[Opts, Source] : llvm::reverse(RawOptions)) {
668 llvm::outs() <<
"'" << Check <<
"' is enabled in the " << Source
679 llvm::errs() <<
"No checks enabled.\n";
682 llvm::outs() <<
"Enabled checks:";
683 for (
const auto &CheckName : EnabledChecks)
684 llvm::outs() <<
"\n " << CheckName;
685 llvm::outs() <<
"\n\n";
701 const std::vector<ClangTidyOptionsProvider::OptionsSource> RawOptions =
702 OptionsProvider->getRawOptions(FileName);
705 bool AnyInvalid =
false;
706 for (
const auto &[Opts, Source] : RawOptions) {
708 AnyInvalid |=
verifyChecks(Valid.Checks, *Opts.Checks, Source);
709 if (Opts.HeaderFileExtensions && Opts.ImplementationFileExtensions)
712 *Opts.ImplementationFileExtensions, Source);
713 AnyInvalid |=
verifyOptions(Valid.Options, Opts.CheckOptions, Source);
717 llvm::outs() <<
"No config errors detected.\n";
721 if (EnabledChecks.empty()) {
723 llvm::outs() <<
"No checks enabled.\n";
726 llvm::errs() <<
"Error: no checks enabled.\n";
727 llvm::cl::PrintHelpMessage(
false,
true);
731 if (PathList.empty()) {
732 llvm::errs() <<
"Error: no input files specified.\n";
733 llvm::cl::PrintHelpMessage(
false,
true);
737 llvm::InitializeAllTargetInfos();
738 llvm::InitializeAllTargetMCs();
739 llvm::InitializeAllAsmParsers();
744 std::vector<ClangTidyError> Errors =
745 runClangTidy(Context, OptionsParser->getCompilations(), PathList, BaseFS,
747 const bool FoundErrors = llvm::any_of(Errors, [](
const ClangTidyError &E) {
748 return E.DiagLevel == ClangTidyError::Error;
756 const bool DisableFixes = FoundErrors && !
FixErrors;
758 unsigned WErrorCount = 0;
761 WErrorCount, BaseFS);
765 llvm::raw_fd_ostream OS(
ExportFixes, EC, llvm::sys::fs::OF_None);
767 llvm::errs() <<
"Error opening output file: " << EC.message() <<
'\n';
775 if (DisableFixes && Behaviour !=
FB_NoFix)
777 <<
"Found compiler errors, but -fix-errors was not specified.\n"
778 "Fixes have NOT been applied.\n\n";
783 const StringRef Plural = WErrorCount == 1 ?
"" :
"s";
784 llvm::errs() << WErrorCount <<
" warning" << Plural <<
" treated as error"
799 llvm::errs() <<
"Found compiler error(s).\n";
static cl::opt< bool > UseColor("use-color", cl::desc(R"(Use colors in detailed AST output. If not set, colors
will be used if the terminal connected to
standard output supports colors.)"), cl::init(false), cl::cat(ClangQueryCategory))
static cl::opt< bool > EnableCheckProfile("enable-check-profile", desc(R"(
Enable per-check timing profiles, and print a
report to stderr.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::opt< std::string > VfsOverlay("vfsoverlay", desc(R"(
Overlay the virtual filesystem described by file
over the real file system.
)"), cl::value_desc("filename"), cl::cat(ClangTidyCategory))
static cl::opt< bool > FixNotes("fix-notes", desc(R"(
If a warning has no fix, but a single fix can
be found through an associated diagnostic note,
apply the fix.
Specifying this flag will implicitly enable the
'--fix' flag.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::opt< bool > Fix("fix", desc(R"(
Apply suggested fixes. Without -fix-errors
clang-tidy will bail out if any compilation
errors were found.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::list< std::string > RemovedArgs("removed-arg", desc(R"(
List of arguments to remove from the command
line sent to the compiler. Please note that
removing arguments might change the semantic
of the analyzed code, possibly leading to
compiler errors, false positives or
false negatives. This option is applied
before --extra-arg and --extra-arg-before)"), cl::cat(ClangTidyCategory))
static cl::opt< bool > ExplainConfig("explain-config", desc(R"(
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))
static cl::opt< bool > UseColor("use-color", desc(R"(
Use colors in diagnostics. If not set, colors
will be used if the terminal connected to
standard output supports colors.
This option overrides the 'UseColor' option in
.clang-tidy file, if any.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::opt< std::string > WarningsAsErrors("warnings-as-errors", desc(R"(
Upgrades warnings to errors. Same format as
'-checks'.
This option's value is appended to the value of
the 'WarningsAsErrors' option in .clang-tidy
file, if any.
)"), cl::init(""), cl::cat(ClangTidyCategory))
static cl::opt< bool > ExperimentalCustomChecks("experimental-custom-checks", desc(R"(
Enable experimental clang-query based
custom checks.
see https://clang.llvm.org/extra/clang-tidy/QueryBasedCustomChecks.html.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::opt< std::string > ExcludeHeaderFilter("exclude-header-filter", desc(R"(
Regular expression matching the names of the
headers to exclude diagnostics from. Diagnostics
from the main file of each translation unit are
always displayed.
Must be used together with --header-filter.
Can be used together with -line-filter.
This option overrides the 'ExcludeHeaderFilterRegex'
option in .clang-tidy file, if any.
)"), cl::init(""), cl::cat(ClangTidyCategory))
static cl::opt< bool > AllowEnablingAnalyzerAlphaCheckers("allow-enabling-analyzer-alpha-checkers", cl::init(false), cl::Hidden, cl::cat(ClangTidyCategory))
This option allows enabling the experimental alpha checkers from the static analyzer.
static cl::opt< std::string > ConfigFile("config-file", desc(R"(
Specify the path of .clang-tidy or custom config file:
e.g. --config-file=/some/path/myTidyConfigFile
This option internally works exactly the same way as
--config option after reading specified config file.
Use either --config-file or --config, not both.
)"), cl::init(""), cl::cat(ClangTidyCategory))
static cl::opt< bool > EnableModuleHeadersParsing("enable-module-headers-parsing", desc(R"(
Enables preprocessor-level module header parsing
for C++20 and above, empowering specific checks
to detect macro definitions within modules. This
feature may cause performance and parsing issues
and is therefore considered experimental.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::opt< std::string > Config("config", desc(R"(
Specifies a configuration in YAML/JSON format:
-config="{Checks:' *', CheckOptions:{x:y}}"
When the value is empty, clang-tidy will
attempt to find a file named .clang-tidy for
each source file in its parent directories.
)"), cl::init(""), cl::cat(ClangTidyCategory))
static cl::OptionCategory ClangTidyCategory("clang-tidy options")
static cl::opt< bool > FixErrors("fix-errors", desc(R"(
Apply suggested fixes even if compilation
errors were found. If compiler errors have
attached fix-its, clang-tidy will apply them as
well.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::extrahelp ClangTidyParameterFileHelp(R"(
Parameters files:
A large number of options or source files can be passed as parameter files
by use '@parameter-file' in the command line.
)")
static cl::opt< bool > ListChecks("list-checks", desc(R"(
List all enabled checks and exit. Use with
-checks=* to list all available checks.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::opt< std::string > HeaderFilter("header-filter", desc(R"(
Regular expression matching the names of the
headers to output diagnostics from. The default
value is '.*', i.e. diagnostics from all non-system
headers are displayed by default. Diagnostics
from the main file of each translation unit are
always displayed.
Can be used together with -line-filter.
This option overrides the 'HeaderFilterRegex'
option in .clang-tidy file, if any.
)"), cl::init(".*"), cl::cat(ClangTidyCategory))
static cl::opt< bool > DumpConfig("dump-config", desc(R"(
Dumps configuration in the YAML format to
stdout. This option can be used along with a
file name (and '--' if the file is outside of a
project with configured compilation database).
The configuration used for this file will be
printed.
Use along with -checks=* to include
configuration of all checks.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::opt< bool > SystemHeaders("system-headers", desc(R"(
Display the errors from system headers.
This option overrides the 'SystemHeaders' option
in .clang-tidy file, if any.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::opt< std::string > LineFilter("line-filter", desc(R"(
List of files and line ranges to output diagnostics from.
The range is inclusive on both ends. Can be used together
with -header-filter. The format of the list is a JSON
array of objects. For example:
[
{"name":"file1.cpp","lines":[[1,3],[5,7]]},
{"name":"file2.h"}
]
This will output diagnostics from 'file1.cpp' only for
the line ranges [1,3] and [5,7], as well as all from the
entire 'file2.h'.
)"), cl::init(""), cl::cat(ClangTidyCategory))
static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage)
static cl::opt< bool > VerifyConfig("verify-config", desc(R"(
Check the config files to ensure each check and
option is recognized without running any checks.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::opt< std::string > Checks("checks", desc(R"(
Comma-separated list of globs with optional '-'
prefix. Globs are processed in order of
appearance in the list. Globs without '-'
prefix add checks with matching names to the
set, globs with the '-' prefix remove checks
with matching names from the set of enabled
checks. This option's value is appended to the
value of the 'Checks' option in .clang-tidy
file, if any.
)"), cl::init(""), cl::cat(ClangTidyCategory))
static cl::opt< bool > AllowNoChecks("allow-no-checks", desc(R"(
Allow empty enabled checks. This suppresses
the "no checks enabled" error when disabling
all of the checks.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::extrahelp ClangTidyHelp(R"(
Configuration files:
clang-tidy attempts to read configuration for each source file from a
.clang-tidy file located in the closest parent directory of the source
file. The .clang-tidy file is specified in YAML format. If any configuration
options have a corresponding command-line option, command-line option takes
precedence.
The following configuration options may be used in a .clang-tidy file:
CheckOptions - List of key-value pairs defining check-specific
options. Example:
CheckOptions:
some-check.SomeOption: 'some value'
Checks - Same as '--checks'. Additionally, the list of
globs can be specified as a list instead of a
string.
CustomChecks - Array of user defined checks based on
Clang-Query syntax.
ExcludeHeaderFilterRegex - Same as '--exclude-header-filter'.
ExtraArgs - Same as '--extra-arg'.
ExtraArgsBefore - Same as '--extra-arg-before'.
FormatStyle - Same as '--format-style'.
HeaderFileExtensions - File extensions to consider to determine if a
given diagnostic is located in a header file.
HeaderFilterRegex - Same as '--header-filter'.
ImplementationFileExtensions - File extensions to consider to determine if a
given diagnostic is located in an
implementation file.
InheritParentConfig - If this option is true in a config file, the
configuration file in the parent directory
(if any exists) will be taken and the current
config file will be applied on top of the
parent one.
RemovedArgs - Same as '--removed-arg'.
SystemHeaders - Same as '--system-headers'.
UseColor - Same as '--use-color'.
User - Specifies the name or e-mail of the user
running clang-tidy. This option is used, for
example, to place the correct user name in
TODO() comments in the relevant check.
WarningsAsErrors - Same as '--warnings-as-errors'.
The effective configuration can be inspected using --dump-config:
$ clang-tidy --dump-config
---
Checks: '-*,some-check'
WarningsAsErrors: ''
HeaderFileExtensions: ['', 'h','hh','hpp','hxx']
ImplementationFileExtensions: ['c','cc','cpp','cxx']
HeaderFilterRegex: '.*'
FormatStyle: none
InheritParentConfig: true
User: user
CheckOptions:
some-check.SomeOption: 'some value'
...
)")
const char DefaultChecks[]
static cl::opt< bool > Quiet("quiet", desc(R"(
Run clang-tidy in quiet mode. This suppresses
printing statistics about ignored warnings and
warnings treated as errors if the respective
options are specified.
)"), cl::init(false), cl::cat(ClangTidyCategory))
static cl::opt< std::string > ExportFixes("export-fixes", desc(R"(
YAML file to store suggested fixes in. The
stored fixes can be applied to the input source
code with clang-apply-replacements.
)"), cl::value_desc("filename"), cl::cat(ClangTidyCategory))
static cl::desc desc(StringRef Description)
static cl::opt< std::string > FormatStyle("format-style", desc(R"(
Style for formatting code around applied fixes:
- 'none' (default) turns off formatting
- 'file' (literally 'file', not a placeholder)
uses .clang-format file in the closest parent
directory
- '{ <json> }' specifies options inline, e.g.
-format-style='{BasedOnStyle: llvm, IndentWidth: 8}'
- 'llvm', 'google', 'webkit', 'mozilla'
See clang-format documentation for the up-to-date
information about formatting styles and options.
This option overrides the 'FormatStyle` option in
.clang-tidy file, if any.
)"), cl::init("none"), cl::cat(ClangTidyCategory))
static cl::opt< std::string > StoreCheckProfile("store-check-profile", desc(R"(
By default reports are printed in tabulated
format to stderr. When this option is passed,
these per-TU profiles are instead stored as JSON.
)"), cl::value_desc("prefix"), cl::cat(ClangTidyCategory))
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Read-only set of strings represented as a list of positive and negative globs.
virtual bool contains(StringRef S) const
Returns true if the pattern matches S.
std::vector< std::string > lookup(const SymbolIndex &I, llvm::ArrayRef< SymbolID > IDs)
static llvm::IntrusiveRefCntPtr< vfs::FileSystem > getVfsFromFile(const std::string &OverlayFile, vfs::FileSystem &BaseFS)
ChecksAndOptions getAllChecksAndOptions(bool AllowEnablingAnalyzerAlphaCheckers, bool ExperimentalCustomChecks)
std::error_code parseLineFilter(StringRef LineFilter, clang::tidy::ClangTidyGlobalOptions &Options)
Parses -line-filter option and stores it to the Options.
FixBehaviour
Controls what kind of fixes clang-tidy is allowed to apply.
@ FB_NoFix
Don't try to apply any fix.
@ FB_FixNotes
Apply fixes found in notes.
@ FB_Fix
Only apply fixes added to warnings.
std::vector< std::string > getCheckNames(const ClangTidyOptions &Options, bool AllowEnablingAnalyzerAlphaCheckers, bool ExperimentalCustomChecks)
Fills the list of check names that are enabled when the provided filters are applied.
int clangTidyMain(int argc, const char **argv)
static ClangTidyModuleRegistry::Add< altera::AlteraModule > X("altera-module", "Adds Altera FPGA OpenCL lint checks.")
static void printStats(const ClangTidyStats &Stats)
static llvm::IntrusiveRefCntPtr< vfs::OverlayFileSystem > createBaseFS()
ClangTidyOptions::OptionMap getCheckOptions(const ClangTidyOptions &Options, bool AllowEnablingAnalyzerAlphaCheckers, bool ExperimentalCustomChecks)
Returns the effective check-specific options.
void handleErrors(llvm::ArrayRef< ClangTidyError > Errors, ClangTidyContext &Context, FixBehaviour Fix, unsigned &WarningsAsErrorsCount, llvm::IntrusiveRefCntPtr< llvm::vfs::FileSystem > BaseFS)
Displays the found Errors to the users.
void filterCheckOptions(ClangTidyOptions &Options, const std::vector< std::string > &EnabledChecks)
Filters CheckOptions in Options to only include options specified in the EnabledChecks which is a sor...
static constexpr StringLiteral VerifyConfigWarningEnd
static SmallString< 256 > makeAbsolute(llvm::StringRef Input)
static bool verifyOptions(const llvm::StringSet<> &ValidOptions, const ClangTidyOptions::OptionMap &OptionMap, StringRef Source)
static std::unique_ptr< ClangTidyOptionsProvider > createOptionsProvider(llvm::IntrusiveRefCntPtr< vfs::FileSystem > FS)
static bool verifyFileExtensions(const std::vector< std::string > &HeaderFileExtensions, const std::vector< std::string > &ImplementationFileExtensions, StringRef Source)
std::string configurationAsText(const ClangTidyOptions &Options)
Serializes configuration to a YAML-encoded string.
llvm::ErrorOr< ClangTidyOptions > parseConfiguration(llvm::MemoryBufferRef Config)
Parses configuration from JSON and returns ClangTidyOptions or an error.
void exportReplacements(const llvm::StringRef MainFilePath, const std::vector< ClangTidyError > &Errors, raw_ostream &OS)
static bool verifyChecks(const StringSet<> &AllChecks, StringRef CheckGlob, StringRef Source)
std::vector< ClangTidyError > runClangTidy(clang::tidy::ClangTidyContext &Context, const CompilationDatabase &Compilations, ArrayRef< std::string > InputFiles, llvm::IntrusiveRefCntPtr< llvm::vfs::OverlayFileSystem > BaseFS, bool ApplyAnyFix, bool EnableCheckProfile, llvm::StringRef StoreCheckProfile, bool Quiet)
static StringRef closest(StringRef Value, const StringSet<> &Allowed)
Some operations such as code completion produce a set of candidates.
OptionMap CheckOptions
Key-value mapping used to store check-specific options.
std::optional< std::string > HeaderFilterRegex
Output warnings from headers matching this filter.
std::optional< std::string > Checks
Checks filter.
std::optional< std::string > WarningsAsErrors
WarningsAsErrors filter.
std::optional< ArgList > RemovedArgs
Remove command line arguments sent to the compiler matching this.
std::optional< std::string > User
Specifies the name or e-mail of the user running clang-tidy.
std::optional< bool > UseColor
Use colors in diagnostics. If missing, it will be auto detected.
std::optional< bool > SystemHeaders
Output warnings from system headers matching HeaderFilterRegex.
std::optional< std::string > ExcludeHeaderFilterRegex
Exclude warnings from headers matching this filter, even if they match HeaderFilterRegex.
std::optional< std::string > FormatStyle
Format code around applied fixes with clang-format using this style.
A detected error complete with information to display diagnostic and automatic fix.
Contains options for clang-tidy.
ClangTidyOptions merge(const ClangTidyOptions &Other, unsigned Order) const
Creates a new ClangTidyOptions instance combined from all fields of this instance overridden by the f...
llvm::StringMap< ClangTidyValue > OptionMap
static ClangTidyOptions getDefaults()
These options are used for all settings that haven't been overridden by the OptionsProvider.
Contains displayed and ignored diagnostic counters for a ClangTidy run.
unsigned ErrorsIgnoredCheckFilter
unsigned ErrorsIgnoredNonUserCode
unsigned ErrorsIgnoredLineFilter
unsigned ErrorsIgnoredNOLINT
unsigned errorsIgnored() const