Skip to content

Instantly share code, notes, and snippets.

@ronekko
Created February 15, 2020 11:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ronekko/4e7b4d00bfc5a64546f16719921946d1 to your computer and use it in GitHub Desktop.
Save ronekko/4e7b4d00bfc5a64546f16719921946d1 to your computer and use it in GitHub Desktop.
.clang-tidy
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