diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-07-27 11:42:03 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-07-28 21:34:08 +0200 |
commit | af48a660a3410c3a63cab324fd8a345b648f821d (patch) | |
tree | 0c3a9cb6f073ae6884866d4af7e1965777384982 /.clang-tidy | |
parent | 6f0518b9a5999442d063369d9818c41fb9ac2ed6 (diff) |
WIP
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 0000000..d3437d7 --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,35 @@ +--- +Checks: "*, + -abseil-*, + -altera-*, + -android-*, + -fuchsia-*, + -google-*, + -llvm*, + -modernize-use-trailing-return-type, + -zircon-*, + -readability-else-after-return, + -readability-static-accessed-through-instance, + -readability-avoid-const-params-in-decls, + -cppcoreguidelines-non-private-member-variables-in-classes, + -misc-non-private-member-variables-in-classes, + -misc-include-cleaner, + -cppcoreguidelines-avoid-do-while, + -bugprone-easily-swappable-parameters, + -hicpp-uppercase-literal-suffix, + -readability-uppercase-literal-suffix, +" +WarningsAsErrors: '' +HeaderFilterRegex: '' +FormatStyle: none + +CheckOptions: + - key: readability-identifier-length.IgnoredVariableNames + value: 'x|y|z' + - key: readability-identifier-length.IgnoredParameterNames + value: 'x|y|z' + + + + + |