llvm-project/clang-tools-extra/clang-tidy/readability
Alexander Kornienko 76c288062a [clang-tidy] Add new IdentifierNaming check
This check will try to enforce coding guidelines on the identifiers naming.
It supports lower_case, UPPER_CASE, camelBack and CamelCase casing and
tries to convert from one to another if a mismatch is detected.

It also supports a fixed prefix and suffix that will be prepended or appended
to the identifiers, regardless of the casing.

Many configuration options are available, in order to be able to create
different rules for different kind of identifier. In general, the
rules are falling back to a more generic rule if the specific case is not
configured.

http://reviews.llvm.org/D10933

Patch by Beren Minor!

llvm-svn: 245429
2015-08-19 11:15:36 +00:00
..
BracesAroundStatementsCheck.cpp [clang-tidy] Force braces around leaf 'else if' for consistency. 2015-06-04 16:36:58 +00:00
BracesAroundStatementsCheck.h [clang-tidy] Force braces around leaf 'else if' for consistency. 2015-06-04 16:36:58 +00:00
CMakeLists.txt [clang-tidy] Add new IdentifierNaming check 2015-08-19 11:15:36 +00:00
ContainerSizeEmptyCheck.cpp [clang-tidy] Move user-defined matches to unnamed namespaces to prevent ODR violations. 2015-06-17 13:11:37 +00:00
ContainerSizeEmptyCheck.h [clang-tidy] Refactor: Rename clang-tidy readability check files and classes to follow naming conventions 2015-03-09 12:18:39 +00:00
ElseAfterReturnCheck.cpp clang-tidy: [readability-else-after-return] Fix false positive. This 2015-04-27 22:42:20 +00:00
ElseAfterReturnCheck.h [clang-tidy] Fixed header guards using clang-tidy llvm-header-guard check. NFC. 2015-03-09 16:52:33 +00:00
FunctionSizeCheck.cpp [clang-tidy] Refactor: Rename clang-tidy readability check files and classes to follow naming conventions 2015-03-09 12:18:39 +00:00
FunctionSizeCheck.h [clang-tidy] Refactor: Rename clang-tidy readability check files and classes to follow naming conventions 2015-03-09 12:18:39 +00:00
IdentifierNamingCheck.cpp [clang-tidy] Add new IdentifierNaming check 2015-08-19 11:15:36 +00:00
IdentifierNamingCheck.h [clang-tidy] Add new IdentifierNaming check 2015-08-19 11:15:36 +00:00
Makefile
NamedParameterCheck.cpp [clang-tidy] Move google-readability-function check to readability-named-parameter. 2015-03-16 22:31:16 +00:00
NamedParameterCheck.h [clang-tidy] Move google-readability-function check to readability-named-parameter. 2015-03-16 22:31:16 +00:00
NamespaceCommentCheck.cpp [clang-tidy] Fix for http://llvm.org/PR23130 2015-04-08 12:54:57 +00:00
NamespaceCommentCheck.h
ReadabilityTidyModule.cpp [clang-tidy] Add new IdentifierNaming check 2015-08-19 11:15:36 +00:00
RedundantSmartptrGetCheck.cpp [clang-tidy] Refactor: Rename clang-tidy readability check files and classes to follow naming conventions 2015-03-09 12:18:39 +00:00
RedundantSmartptrGetCheck.h [clang-tidy] Refactor: Rename clang-tidy readability check files and classes to follow naming conventions 2015-03-09 12:18:39 +00:00
RedundantStringCStrCheck.cpp Move remove-cstr-calls from a standalone executable to a clang-tidy check readability-redundant-string-cstr 2015-03-16 00:32:25 +00:00
RedundantStringCStrCheck.h Move remove-cstr-calls from a standalone executable to a clang-tidy check readability-redundant-string-cstr 2015-03-16 00:32:25 +00:00
ShrinkToFitCheck.cpp [clang-tidy] Move user-defined matches to unnamed namespaces to prevent ODR violations. 2015-06-17 13:11:37 +00:00
ShrinkToFitCheck.h [clang-tidy] Fixed header guards using clang-tidy llvm-header-guard check. NFC. 2015-03-09 16:52:33 +00:00
SimplifyBooleanExprCheck.cpp [clang-tidy] Enhance clang-tidy readability-simplify-boolean-expr... 2015-07-01 12:39:40 +00:00
SimplifyBooleanExprCheck.h [clang-tidy] Enhance clang-tidy readability-simplify-boolean-expr... 2015-07-01 12:39:40 +00:00