forked from exult/exult
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
47 lines (47 loc) · 1.46 KB
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Checks: >
-*,
bugprone-*,
-bugprone-branch-clone,
-bugprone-macro-parentheses,
-bugprone-parent-virtual-call,
-bugprone-signed-char-misuse,
-bugprone-narrowing-conversions,
-bugprone-easily-swappable-parameters,
clang-diagnostic-*,
-clang-diagnostic-implicit-fallthrough,
-clang-diagnostic-weak-template-vtables,
-clang-diagnostic-implicit-int-conversion,
clang-analyzer-*,
-clang-analyzer-alpha*,
google-objc-avoid-nsobject-new,
google-objc-function-naming,
google-objc-global-variable-declaration,
objc-*,
misc-*,
-misc-non-private-member-variables-in-classes,
-misc-unused-parameters,
-misc-no-recursion,
modernize-*,
-modernize-avoid-bind,
-modernize-avoid-c-arrays,
-modernize-concat-nested-namespaces,
-modernize-use-trailing-return-type,
-modernize-use-nodiscard,
performance-*,
readability-*,
-readability-avoid-const-params-in-decls,
-readability-convert-member-functions-to-static,
-readability-magic-numbers,
-readability-make-member-function-const,
-readability-named-parameter,
-readability-uppercase-literal-suffix,
-readability-function-cognitive-complexity,
-readability-identifier-length
CheckOptions:
- key: bugprone-argument-comment.StrictMode
value: 1
- key: bugprone-exception-escape.FunctionsThatShouldNotThrow
value: WinMain,SDL_main
- key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: 1
FormatStyle: 'file'