summaryrefslogtreecommitdiffstats
path: root/.clang-tidy
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-07-17 09:14:30 -0400
committerDavid Robillard <d@drobilla.net>2024-07-17 09:14:30 -0400
commit395cd74dcdb12ca8f16e1ec74802e11049e4f6cf (patch)
tree09f2aab1df5afaeb3171875fb6b97fc00c4a7dfb /.clang-tidy
parent3408d25a7a1042adc8c9387ea18ee06ba8ec0536 (diff)
downloadpatchage-395cd74dcdb12ca8f16e1ec74802e11049e4f6cf.tar.gz
patchage-395cd74dcdb12ca8f16e1ec74802e11049e4f6cf.tar.bz2
patchage-395cd74dcdb12ca8f16e1ec74802e11049e4f6cf.zip
Use uppercase integer literal suffixes
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy6
1 files changed, 5 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 06983bb..20de2e5 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -10,7 +10,6 @@ Checks: >
-*-no-malloc,
-*-non-private-member-variables-in-classes,
-*-unused-macros,
- -*-uppercase-literal-suffix,
-*-vararg,
-abseil-string-find-str-contains,
-altera-*,
@@ -53,6 +52,11 @@ Checks: >
-readability-function-cognitive-complexity,
-readability-identifier-length,
-readability-implicit-bool-conversion,
+CheckOptions:
+ - key: hicpp-uppercase-literal-suffix.NewSuffixes
+ value: 'L;U;UL;ULL'
+ - key: readability-uppercase-literal-suffix.NewSuffixes
+ value: 'L;U;UL;ULL'
FormatStyle: file
WarningsAsErrors: '*'
HeaderFilterRegex: '.*'