SFML/.clang-tidy

33 lines
1.1 KiB
Plaintext
Raw Normal View History

Checks: >
-*,
clang-analyzer-*,
modernize-*,
2023-01-15 22:42:32 -07:00
portability-*,
readability-container-size-empty,
2022-10-17 18:44:31 -06: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,
-modernize-avoid-c-arrays,
-modernize-macro-to-enum,
-modernize-pass-by-value,
-modernize-return-braced-init-list,
-modernize-use-auto,
-modernize-use-nodiscard,
-modernize-use-trailing-return-type,
2022-10-17 18:44:31 -06:00
CheckOptions:
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
2022-10-23 16:53:36 -06:00
- { key: readability-identifier-naming.VariableCase, value: camelBack }
2022-10-23 15:17:57 -06:00
- { key: readability-identifier-naming.ParameterCase, value: camelBack }
HeaderFilterRegex: '.*'
WarningsAsErrors: '*'
2023-01-13 17:16:42 -07:00
UseColor: true