aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/utils
AgeCommit message (Expand)AuthorFilesLines
2024-01-20[clang-tidy] Add readability-redundant-casting check (#70595)Piotr Zegar1-0/+1
2024-01-16[clang-tidy] Fix missing parentheses in readability-implicit-bool-conversion ...Piotr Zegar2-0/+38
2024-01-12[clang-tidy] Use StringRef::ltrim (NFC)Kazu Hirata1-1/+1
2023-12-26[clang-tidy] Treat fields in anonymous records as names in enclosing scope wh...Sirui Mu2-0/+29
2023-12-13[clang-tidy] Use StringRef::{starts,ends}_with (NFC)Kazu Hirata2-8/+9
2023-11-10[clang-tidy][NFC] Reduce map lookups in IncludeSorterPiotr Zegar1-3/+4
2023-10-09[clang-tidy] Improve `ExceptionSpecAnalyzer`s handling of conditional noexcep...AMS211-6/+15
2023-09-20[clang-tidy] Fix support for typedefs in readability-identifier-naming (#66835)Piotr Zegar1-20/+5
2023-09-10[clang] NFCI: Use `FileEntryRef` in 'clang-tools-extra'Jan Svoboda1-4/+5
2023-09-10[clang-tidy] Add IgnoreTypes option to modernize-use-nullptrPiotr Zegar2-0/+50
2023-08-28[clang-tidy] Fix c_str() removal and cast addition when re-ordering argumentsMike Crowe2-31/+77
2023-08-27[clang-tidy][NFC] Fix cppcoreguidelines-init-variables findingsPiotr Zegar2-8/+6
2023-08-27[clang-tidy][NFC] Fix readability-uppercase-literal-suffix findingsPiotr Zegar2-2/+2
2023-08-27[clang-tidy][NFC] Fix modernize-return-braced-init-list findingsPiotr Zegar6-23/+19
2023-08-27[clang-tidy][NFC] Fix readability-container-size-empty findingsPiotr Zegar1-3/+3
2023-08-27[clang-tidy][NFC] Fix modernize-use-using findingsPiotr Zegar2-2/+2
2023-08-27[clang-tidy][NFC] Fix modernize-use-emplace findingsPiotr Zegar1-2/+2
2023-08-27[clang-tidy][NFC] Fix readability-static-accessed-through-instance findingsPiotr Zegar1-1/+1
2023-08-27[clang-tidy][NFC] Fix readability-inconsistent-declaration-parameter-name fin...Piotr Zegar3-4/+5
2023-08-04cmake: add missing dependencies on ClangDriverOptions tablegenJon Roelofs1-0/+1
2023-07-30[clang-tidy] Implement modernize-use-constraintsChris Cotter2-3/+16
2023-07-30[clang-tidy] Added bugprone-inc-dec-in-conditions checkPiotr Zegar3-0/+39
2023-07-24[clang-tidy] performance-* checks: Also allow allow member expressions to be ...Shivam Gupta1-15/+21
2023-07-17[clang-tidy] Model noexcept more properly in bugprone-exception-escapePiotr Zegar1-1/+29
2023-07-11[clang-tidy] Make MatchesAnyListedNameMatcher cope with unnamed DeclMike Crowe1-1/+3
2023-07-11[clang-tidy] Don't split \r\n in modernize-use-std-print checkMike Crowe1-1/+4
2023-07-03[clang-tidy] Fix width/precision argument order in modernize-use-std-printMike Crowe2-0/+41
2023-06-26[clang-tidy] Add modernize-printf-to-std-print checkMike Crowe3-0/+785
2023-06-26Revert "[clang-tidy] Add modernize-printf-to-std-print check"Piotr Zegar3-776/+0
2023-06-26[clang-tidy] Add modernize-printf-to-std-print checkMike Crowe3-0/+776
2023-06-25Revert "[clang-tidy] Add modernize-printf-to-std-print check"Piotr Zegar3-776/+0
2023-06-25[clang-tidy] Add modernize-printf-to-std-print checkMike Crowe3-0/+776
2023-06-22[clang-tidy][NFC] Add missing argument comment to LexerUtils.cppPiotr Zegar1-2/+3
2023-06-13[clang-tidy] Add more checks for functions which should be noexceptAMS213-4/+49
2023-06-13[clang-tidy] Move formatDereference to FixitHintUtilsMike Crowe3-0/+48
2023-06-12Revert "[clang-tidy] Move formatDereference to FixitHintUtils"Piotr Zegar2-47/+0
2023-06-12[clang-tidy] Move formatDereference to FixitHintUtilsMike Crowe2-0/+47
2023-06-11[clang-tidy] Check functions called from catch blocksDeniz Evrenci2-11/+16
2023-05-30[clang-tidy] Do not emit bugprone-exception-escape warnings from coroutinesDeniz Evrenci1-0/+13
2023-05-15[clang-tidy] Extract areStatementsIdenticalPiotr Zegar2-0/+29
2023-05-09[tidy][IdentifierNaming] Fix crashes on non-identifiersKadir Cetinkaya1-3/+7
2023-05-06[clang-tidy] Optimize performance of RenamerClangTidyCheckPiotr Zegar2-298/+320
2023-05-04[clang-tidy] bugprone-use-after-move: Ctor arguments should be sequenced if c...Martin Braenne1-0/+10
2023-04-14[clang-tidy] Fix false positve for defaulted move constructor in performance-...AMS213-0/+362
2023-04-08[clang-tidy] fix concat-nest-namespace fix hint remove the macroCongcong Cai2-0/+27
2023-04-04[clang-tidy] Small refactor for ExceptionAnalyzerAMS212-11/+11
2023-04-02[clang-tidy] Fix findNextTokenSkippingComments & rangeContainsExpansionsOrDir...Piotr Zegar1-7/+12
2023-03-28[clang-tidy] Ignore unevaluated exprs in rvalue-reference-param-not-movedChris Cotter1-0/+18
2023-03-16[clang-tidy] Correctly handle evaluation order of designated initializers.Martin Braenne1-3/+19
2023-02-26[clang-tidy] handle exceptions properly in `ExceptionAnalyzer`isuckatcs2-7/+319