Added clang-tidy config file

This commit is contained in:
Nav
2021-10-28 20:38:05 +01:00
parent db74d8f3fd
commit 63dc3e881f

22
.clang-tidy Normal file
View File

@@ -0,0 +1,22 @@
Checks: >
-*,
bugprone-*,
cert-dcl21-cpp,
cert-dcl50-cpp,
cert-err52-cpp,
cert-err60-cpp,
cppcoreguidelines-*,
-cppcoreguidelines-*,
google-explicit-constructor,
google-global-names-in-headers,
google-readability-casting,
google-runtime-int,
google-runtime-operator,
modernize-*,
performance-*,
readability-*,
-readability-named-parameter
CheckOptions:
- key: bugprone-argument-comment.StrictMode
value: 1
FormatStyle: 'none'