-
Notifications
You must be signed in to change notification settings - Fork 12
/
.clang-tidy
19 lines (19 loc) · 1.18 KB
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
Checks: '-clang-diagnostic-*,clang-analyzer-*,cppcoreguidelines-*,modernize-*,readability-*,cert-*,bugprone-*,misc-*,openmp-*,performance-*,portability-*,hicpp-*,google-*,-misc-include-cleaner,-readability-function-cognitive-complexity,-bugprone-branch-clone,-hicpp-signed-bitwise,-misc-use-anonymous-namespace,-misc-no-recursion,-modernize-use-trailing-return-type'
HeaderFilterRegex: ''
FormatStyle: none
InheritParentConfig: true
CheckOptions:
readability-braces-around-statements.ShortStatementLines: 1
readability-function-size.LineThreshold: 800
readability-identifier-naming.ClassMemberPrefix: m_
readability-identifier-naming.ClassMemberCase: camelBack
readability-identifier-naming.LocalVariableCase: camelBack
readability-identifier-naming.ConstexprVariableCase: UPPER_CASE
readability-identifier-naming.MacroDefinitionCase: UPPER_CASE
readability-identifier-naming.ParameterCase: camelBack
readability-identifier-naming.ClassCase: lower_case
readability-identifier-naming.StructCase: lower_case
readability-identifier-naming.EnumCase: lower_case
readability-identifier-naming.FunctionNameCase: lower_case
readability-identifier-naming.NamespaceCase: lower_case