diff options
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy index 0a4ae44..dacb9df 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,11 +1,15 @@ Checks: > *, -*-magic-numbers, - -*-uppercase-literal-suffix, -altera*, -clang-diagnostic-unused-function, -clang-diagnostic-unused-macros, -llvmlibc-*, -readability-identifier-length, +CheckOptions: + - key: hicpp-uppercase-literal-suffix.NewSuffixes + value: L;U;f + - key: readability-uppercase-literal-suffix.NewSuffixes + value: L;U;f FormatStyle: file HeaderFilterRegex: 'pugl/.*' |