mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
a4bca20567
Fixed formatting issues per review Implemented copy constructor since operator= is implemented Reverted operator=, add NOLINT for copy constructor per review Fixed clang-tidy escape in examples Fixed OSX clang-tidy escapes
26 lines
959 B
YAML
26 lines
959 B
YAML
Checks: >
|
|
-*,
|
|
clang-analyzer-*,
|
|
modernize-concat-nested-namespaces,
|
|
modernize-use-equals-default,
|
|
modernize-use-equals-delete,
|
|
modernize-use-nullptr,
|
|
readability-identifier-naming,
|
|
-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,
|
|
CheckOptions:
|
|
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
|
|
- { key: readability-identifier-naming.VariableCase, value: camelBack }
|
|
- { key: readability-identifier-naming.ParameterCase, value: camelBack }
|
|
HeaderFilterRegex: '.*'
|
|
WarningsAsErrors: '*'
|
|
UseColor: true
|