| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- ---
- Checks: >
- -*,
- bugprone-*,
- cert-*,
- clang-analyzer-*,
- cppcoreguidelines-*,
- google-*,
- hicpp-*,
- misc-*,
- modernize-*,
- performance-*,
- portability-*,
- readability-*,
- -bugprone-easily-swappable-parameters,
- -cppcoreguidelines-avoid-magic-numbers,
- -cppcoreguidelines-pro-bounds-array-to-pointer-decay,
- -cppcoreguidelines-pro-bounds-constant-array-index,
- -cppcoreguidelines-pro-bounds-pointer-arithmetic,
- -cppcoreguidelines-pro-type-reinterpret-cast,
- -google-readability-todo,
- -hicpp-no-array-decay,
- -misc-non-private-member-variables-in-classes,
- -modernize-use-trailing-return-type,
- -readability-magic-numbers,
- -readability-identifier-length
- WarningsAsErrors: ''
- HeaderFilterRegex: '.*'
- CheckOptions:
- - key: readability-identifier-naming.ClassCase
- value: CamelCase
- - key: readability-identifier-naming.ClassMemberCase
- value: lower_case
- - key: readability-identifier-naming.ClassMemberSuffix
- value: '_'
- - key: readability-identifier-naming.ConstantCase
- value: UPPER_CASE
- - key: readability-identifier-naming.ConstexprVariableCase
- value: CamelCase
- - key: readability-identifier-naming.ConstexprVariablePrefix
- value: k
- - key: readability-identifier-naming.EnumCase
- value: CamelCase
- - key: readability-identifier-naming.EnumConstantCase
- value: CamelCase
- - key: readability-identifier-naming.EnumConstantPrefix
- value: k
- - key: readability-identifier-naming.FunctionCase
- value: CamelCase
- - key: readability-identifier-naming.GlobalConstantCase
- value: CamelCase
- - key: readability-identifier-naming.GlobalConstantPrefix
- value: k
- - key: readability-identifier-naming.LocalConstantCase
- value: CamelCase
- - key: readability-identifier-naming.LocalConstantPrefix
- value: k
- - key: readability-identifier-naming.LocalVariableCase
- value: lower_case
- - key: readability-identifier-naming.MacroDefinitionCase
- value: UPPER_CASE
- - key: readability-identifier-naming.MemberCase
- value: lower_case
- - key: readability-identifier-naming.MethodCase
- value: CamelCase
- - key: readability-identifier-naming.NamespaceCase
- value: lower_case
- - key: readability-identifier-naming.ParameterCase
- value: lower_case
- - key: readability-identifier-naming.PrivateMemberSuffix
- value: '_'
- - key: readability-identifier-naming.ProtectedMemberSuffix
- value: '_'
- - key: readability-identifier-naming.PublicMemberCase
- value: lower_case
- - key: readability-identifier-naming.StaticConstantCase
- value: CamelCase
- - key: readability-identifier-naming.StaticConstantPrefix
- value: k
- - key: readability-identifier-naming.StaticVariableCase
- value: lower_case
- - key: readability-identifier-naming.StructCase
- value: CamelCase
- - key: readability-identifier-naming.TemplateParameterCase
- value: CamelCase
- - key: readability-identifier-naming.TypedefCase
- value: CamelCase
- - key: readability-identifier-naming.UnionCase
- value: CamelCase
- - key: readability-identifier-naming.VariableCase
- value: lower_case
- - key: readability-function-cognitive-complexity.Threshold
- value: 25
- - key: modernize-loop-convert.MinConfidence
- value: reasonable
- - key: modernize-replace-auto-ptr.IncludeStyle
- value: llvm
- - key: modernize-pass-by-value.IncludeStyle
- value: llvm
- - key: performance-move-const-arg.CheckTriviallyCopyableMove
- value: false
- - key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor
- value: true
- - key: hicpp-special-member-functions.AllowSoleDefaultDtor
- value: true
- ...
|