llvm-project/clang-tools-extra/clang-tidy
Nathan James 9dff9ecdd1 [clang-tidy] Change checks that take enum configurations to use a new access method.
Summary: Change all checks that take enums as configuration to use enum specific methods in `ClangTidyCheck::OptionsView`.

Reviewers: aaron.ballman, alexfh

Reviewed By: aaron.ballman

Subscribers: wuzish, nemanjai, kbarton, arphaman, xazax.hun, cfe-commits

Tags: #clang, #clang-tools-extra

Differential Revision: https://reviews.llvm.org/D76606
2020-04-07 20:04:31 +01:00
..
abseil [clang-tidy] Change checks that take enum configurations to use a new access method. 2020-04-07 20:04:31 +01:00
android [clang-tidy] [NFC] Remove unnecessary matchers 2020-03-09 07:38:15 +00:00
boost [clang-tidy] Change checks to use new isLanguageVersionSupported restriction 2020-03-03 16:43:45 +00:00
bugprone [clang-tools-extra] NFC: Fix trivial typo in documents and comments 2020-04-05 15:28:40 +09:00
cert [clang-tidy] Add spuriously-wake-up-functions check 2020-03-21 12:04:03 +01:00
cppcoreguidelines [clang-tidy] Change checks that take enum configurations to use a new access method. 2020-04-07 20:04:31 +01:00
darwin [clang-tidy] Rename objc-avoid-spinlock check to darwin-avoid-spinlock 2019-10-01 21:18:40 +00:00
fuchsia [clang-tools-extra] NFC: Fix trivial typo in documents and comments 2020-04-05 15:28:40 +09:00
google [clang-tidy] Use ; as separator for HeaderFileExtensions 2020-03-09 11:32:44 -06:00
hicpp [clang-tools-extra] NFC: Fix trivial typo in documents and comments 2020-04-05 15:28:40 +09:00
linuxkernel [clang-tidy] Add a module for the Linux kernel. 2019-07-25 22:32:50 +00:00
llvm [clang-tidy] Use ; as separator for HeaderFileExtensions 2020-03-09 11:32:44 -06:00
llvmlibc [clang-tidy] Add check llvmlibc-implementation-in-namespace. 2020-04-06 10:49:49 -07:00
misc [clang-tools-extra] NFC: Fix trivial typo in documents and comments 2020-04-05 15:28:40 +09:00
modernize [clang-tidy] Change checks that take enum configurations to use a new access method. 2020-04-07 20:04:31 +01:00
mpi Make llvm::StringRef to std::string conversions explicit. 2020-01-28 23:25:25 +01:00
objc [clang-tidy] Change checks to use new isLanguageVersionSupported restriction 2020-03-03 16:43:45 +00:00
openmp [OpenMP] Fix layering problem with FrontendOpenMP 2020-04-06 13:04:26 -05:00
performance [clang-tidy] Change checks that take enum configurations to use a new access method. 2020-04-07 20:04:31 +01:00
plugin Make llvm::StringRef to std::string conversions explicit. 2020-01-28 23:25:25 +01:00
portability [clang-tidy] Merge common code between llvmlibc-restrict-system-libc-headers and portability-restrict-system-includes 2020-03-20 15:53:05 -07:00
readability [clang-tidy] Change checks that take enum configurations to use a new access method. 2020-04-07 20:04:31 +01:00
tool Make llvm::StringRef to std::string conversions explicit. 2020-01-28 23:25:25 +01:00
utils [clang-tidy] Change checks that take enum configurations to use a new access method. 2020-04-07 20:04:31 +01:00
zircon [clang-tidy] Switch checks to #include "ClangTidyCheck.h" 2019-03-25 12:38:26 +00:00
CMakeLists.txt [clang-tidy] Add module for llvm-libc and restrict-system-libc-header-check. 2020-03-12 11:46:05 -07:00
ClangTidy.cpp Upgrade some instances of std::sort to llvm::sort. NFC. 2020-03-28 19:23:29 +01:00
ClangTidy.h Remove \brief commands from doxygen comments. 2019-08-22 11:32:57 +00:00
ClangTidyCheck.cpp [clang-tidy] Added support for validating configuration options 2020-04-07 19:54:34 +01:00
ClangTidyCheck.h [clang-tidy] Added support for validating configuration options 2020-04-07 19:54:34 +01:00
ClangTidyDiagnosticConsumer.cpp Make helpers static. NFC. 2020-04-03 12:48:25 +02:00
ClangTidyDiagnosticConsumer.h [clangd] Handle clang-tidy suppression comments for diagnostics inside macro expansions 2020-03-29 15:19:13 -04:00
ClangTidyForceLinker.h [clang-tidy][NFC] Add missing check group docs and order entries 2020-03-23 11:05:34 +01:00
ClangTidyModule.cpp Make llvm::StringRef to std::string conversions explicit. 2020-01-28 23:25:25 +01:00
ClangTidyModule.h Return results by value from ClangTidyCheckFactories::createChecks 2019-09-26 13:55:01 +00:00
ClangTidyModuleRegistry.h Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
ClangTidyOptions.cpp Remove \brief commands from doxygen comments. 2019-08-22 11:32:57 +00:00
ClangTidyOptions.h Remove \brief commands from doxygen comments. 2019-08-22 11:32:57 +00:00
ClangTidyProfiling.cpp Rename F_{None,Text,Append} to OF_{None,Text,Append}. NFC 2019-08-05 05:43:48 +00:00
ClangTidyProfiling.h Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
ExpandModularHeadersPPCallbacks.cpp Prune TargetInfo.h include from ParsedAttr.h, NFC 2020-03-11 20:47:11 -07:00
ExpandModularHeadersPPCallbacks.h Avoid including FileManager.h from SourceManager.h 2020-03-11 13:53:12 -07:00
GlobList.cpp Refactor GlobList from an ad-hoc linked list to a vector 2019-08-27 10:56:13 +00:00
GlobList.h Refactor GlobList from an ad-hoc linked list to a vector 2019-08-27 10:56:13 +00:00
add_new_check.py [clang-tidy] rename_check.py: maintain alphabetical order in Renamed checks section 2020-02-20 17:31:08 +00:00
rename_check.py [clang-tidy] rename_check.py: maintain alphabetical order in Renamed checks section 2020-02-20 17:31:08 +00:00