summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-tidy-vs/ClangTidy
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2018.Paul Robinson2018-06-181-1/+1
| | | | llvm-svn: 334936
* [clang-tidy] Remove google-runtime-member-string-referencesBenjamin Kramer2018-04-051-4/+0
| | | | | | | | | | This is triggering on a pattern that's both too broad (const std::string& members can be used safely) and too narrow (std::string is not the only class with this problem). It has a very low true positive rate, just remove it until we find a better solution for dangling string references. llvm-svn: 329292
* Remove 'misc-pointer-and-integral-operation' clang-tidy check. The only casesRichard Smith2016-10-211-4/+0
| | | | | | | it detects are ill-formed (some per C++ core issue 1512, others always have been). llvm-svn: 284888
* Make building the clang-tidy VS extension less spammy.Zachary Turner2016-10-041-1/+1
| | | | | | | | The package that strong name signs the 3rd party references spams a ton of output to the log, making the build really ugly. Make this quiet. llvm-svn: 283261
* Fix a few oversights in the clang-tidy VS plugin.Zachary Turner2016-09-074-9/+2
| | | | | | | Over-zealous cleanup of using statements removed some that were actually needed. Also cleaned up a few warnings. llvm-svn: 280844
* Add a clang-tidy visual studio extension.Zachary Turner2016-09-0732-0/+3198
For now this only adds the UI necessary to configure clang-tidy settings graphically, and it enables reading in and saving out of .clang-tidy files. It does not actually run clang-tidy on any source files yet. Differential Revision: https://reviews.llvm.org/D23848 llvm-svn: 280840
OpenPOWER on IntegriCloud