2024-01-25 12:33:02 +00:00
|
|
|
WarningsAsErrors: '*'
|
|
|
|
HeaderFilterRegex: '.*\.hpp'
|
|
|
|
FormatStyle: file
|
|
|
|
Checks: >
|
|
|
|
-*,
|
|
|
|
bugprone-*,
|
|
|
|
-bugprone-easily-swappable-parameters,
|
|
|
|
concurrency-*,
|
|
|
|
cppcoreguidelines-*,
|
|
|
|
-cppcoreguidelines-owning-memory,
|
|
|
|
-cppcoreguidelines-avoid-magic-numbers,
|
|
|
|
-cppcoreguidelines-pro-bounds-constant-array-index,
|
|
|
|
-cppcoreguidelines-avoid-const-or-ref-data-members,
|
2024-02-04 12:58:58 +00:00
|
|
|
-cppcoreguidelines-non-private-member-variables-in-classes,
|
2024-04-17 11:31:02 +00:00
|
|
|
-cppcoreguidelines-avoid-goto,
|
2024-01-25 12:33:02 +00:00
|
|
|
google-build-using-namespace.
|
|
|
|
google-explicit-constructor,
|
|
|
|
google-global-names-in-headers,
|
|
|
|
google-readability-casting,
|
|
|
|
google-runtime-int,
|
|
|
|
google-runtime-operator,
|
|
|
|
misc-*,
|
|
|
|
-misc-no-recursion,
|
|
|
|
-misc-non-private-member-variables-in-classes,
|
|
|
|
modernize-*,
|
|
|
|
-modernize-return-braced-init-list,
|
|
|
|
-modernize-use-trailing-return-type,
|
|
|
|
performance-*,
|
|
|
|
portability-std-allocator-const,
|
|
|
|
readability-*,
|
|
|
|
-readability-function-cognitive-complexity,
|
|
|
|
-readability-function-size,
|
|
|
|
-readability-identifier-length,
|
|
|
|
-readability-magic-numbers,
|
|
|
|
-readability-uppercase-literal-suffix,
|
|
|
|
-readability-braces-around-statements,
|
|
|
|
-readability-redundant-access-specifiers,
|
2024-02-16 14:38:20 +00:00
|
|
|
-readability-else-after-return,
|
2024-01-25 12:33:02 +00:00
|
|
|
tidyfox-*,
|
|
|
|
CheckOptions:
|
|
|
|
performance-for-range-copy.WarnOnAllAutoCopies: true
|
|
|
|
performance-inefficient-string-concatenation.StrictMode: true
|
|
|
|
readability-braces-around-statements.ShortStatementLines: 1
|
|
|
|
readability-identifier-naming.ClassCase: CamelCase
|
|
|
|
readability-identifier-naming.ConstantCase: UPPER_CASE
|
|
|
|
readability-identifier-naming.EnumCase: CamelCase
|
2024-02-04 12:58:58 +00:00
|
|
|
readability-identifier-naming.EnumConstantCase: CamelCase
|
2024-01-25 12:33:02 +00:00
|
|
|
readability-identifier-naming.FunctionCase: camelBack
|
|
|
|
readability-identifier-naming.MemberCase: camelBack
|
|
|
|
readability-identifier-naming.NamespaceCase: lower_case
|
|
|
|
readability-identifier-naming.LocalConstantCase: camelBack
|
|
|
|
readability-identifier-naming.MethodCase: camelBack
|
|
|
|
readability-identifier-naming.ParameterCase: camelBack
|
|
|
|
readability-identifier-naming.VariableCase: camelBack
|
|
|
|
|
|
|
|
# does not appear to work
|
|
|
|
readability-operators-representation.BinaryOperators: '&&;&=;&;|;~;!;!=;||;|=;^;^='
|
|
|
|
readability-operators-representation.OverloadedOperators: '&&;&=;&;|;~;!;!=;||;|=;^;^='
|