diff options
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.clang-tidy b/.clang-tidy index bd522e56..53dace0f 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -29,10 +29,14 @@ Checks: > -readability-identifier-length, -readability-implicit-bool-conversion, CheckOptions: - - key: modernize-use-override.AllowOverrideAndFinal - value: 'true' - key: cppcoreguidelines-explicit-virtual-functions.AllowOverrideAndFinal value: 'true' + - key: hicpp-uppercase-literal-suffix.NewSuffixes + value: 'L;U;UL;ULL' + - key: modernize-use-override.AllowOverrideAndFinal + value: 'true' + - key: readability-uppercase-literal-suffix.NewSuffixes + value: 'L;U;UL;ULL' WarningsAsErrors: '*' HeaderFilterRegex: '.*' FormatStyle: file |