Created
February 15, 2020 11:27
-
-
Save ronekko/4e7b4d00bfc5a64546f16719921946d1 to your computer and use it in GitHub Desktop.
.clang-tidy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Checks: | | |
-*, | |
boost-*, | |
bugprone-*, | |
cert-*, | |
cppcoreguidelines-*, | |
clang-analyzer-*, | |
google-*, | |
misc-*, | |
modernize-*, | |
performance-*, | |
readability-*, | |
-google-runtime-references, | |
-modernize-use-auto | |
CheckOptions: | |
- key: readability-identifier-naming.ClassCase | |
value: CamelCase | |
- key: readability-identifier-naming.StructCase | |
value: CamelCase | |
- key: readability-identifier-naming.EnumCase | |
value: CamelCase | |
- key: readability-identifier-naming.TemplateParameterCase | |
value: CamelCase | |
- key: readability-identifier-naming.FunctionCase | |
value: camelBack | |
- key: readability-identifier-naming.NamespaceCase | |
value: lower_case | |
- key: readability-identifier-naming.MemberCase | |
value: lower_case | |
- key: readability-identifier-naming.MemberSuffix | |
value: _ | |
- key: readability-identifier-naming.ParameterCase | |
value: lower_case | |
- key: readability-identifier-naming.VariableCase | |
value: lower_case | |
WarningsAsErrors: '*' | |
User: user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment