SFML/.clang-tidy

33 lines
1.1 KiB
Plaintext
Raw Normal View History

Checks: >
-*,
clang-analyzer-*,
2023-01-07 07:19:57 +08:00
modernize-concat-nested-namespaces,
modernize-deprecated-headers,
modernize-loop-convert,
modernize-use-default-member-init,
modernize-use-equals-default,
modernize-use-equals-delete,
modernize-use-nullptr,
modernize-use-override,
2023-01-16 13:42:32 +08:00
portability-*,
readability-container-size-empty,
2022-10-18 08:44:31 +08:00
readability-identifier-naming,
readability-isolate-declaration,
-clang-analyzer-core.NonNullParamChecker,
-clang-analyzer-core.NullDereference,
-clang-analyzer-nullability.NullablePassedToNonnull,
-clang-analyzer-optin.cplusplus.VirtualCall,
-clang-analyzer-optin.osx.*,
-clang-analyzer-optin.portability.UnixAPI,
-clang-analyzer-osx.*,
-clang-analyzer-security.insecureAPI.rand,
-clang-analyzer-unix.Malloc,
2022-10-18 08:44:31 +08:00
CheckOptions:
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
2022-10-24 06:53:36 +08:00
- { key: readability-identifier-naming.VariableCase, value: camelBack }
2022-10-24 05:17:57 +08:00
- { key: readability-identifier-naming.ParameterCase, value: camelBack }
HeaderFilterRegex: '.*'
WarningsAsErrors: '*'
2023-01-14 08:16:42 +08:00
UseColor: true