diff options
| author | JF002 <JF002@users.noreply.github.com> | 2021-01-31 20:05:50 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-31 20:05:50 (GMT) |
| commit | 1ea4c7d744aa79af57dd8352a3323ec8b0b5c592 (patch) | |
| tree | db26b35c138657112300690bfd6441ee39b67148 | |
| parent | 9810f58a71ed264aed066ff0004dc687b2299282 (diff) | |
| parent | a9e79468d0627080bc667415ed13a22df7a0e48e (diff) | |
Merge pull request #196 from Avamander/patch-8
Added clang-tidy configuration
| -rw-r--r-- | .clang-tidy | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 0000000..d603680 --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,26 @@ +Checks: '*, + -llvmlibc-callee-namespace, + -llvm-header-guard, + -llvm-namespace-comment, + -google-build-using-namespace, + -google-runtime-int, + -google-readability-namespace-comments, + -fuchsia-statically-constructed-objects, + -cppcoreguidelines-pro-bounds-array-to-pointer-decay, + -cppcoreguidelines-pro-bounds-constant-array-index, + -cppcoreguidelines-pro-type-union-access, + -cppcoreguidelines-pro-type-cstyle-cast, + -cppcoreguidelines-pro-type-vararg, + -cppcoreguidelines-avoid-magic-numbers, + -cppcoreguidelines-avoid-non-const-global-variables, + -cppcoreguidelines-avoid-c-arrays, + -readability-magic-numbers, + -readability-uppercase-literal-suffix, + -modernize-use-trailing-return-type, + -modernize-avoid-c-arrays, + -hicpp-signed-bitwise, + -hicpp-no-assembler, + -hicpp-avoid-c-arrays, + -hicpp-uppercase-literal-suffix, + -cert-err58-cpp, + -cert-err60-cpp'
\ No newline at end of file |
