Просмотр исходного кода

linter: disable a couple of checks that I don't like much

Michele Caini 1 год назад
Родитель
Сommit
fc10b39dc4
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      .clang-tidy

+ 3 - 1
.clang-tidy

@@ -15,7 +15,9 @@ Checks: >
     -modernize-use-trailing-return-type,
     performance-*,
     portability-*,
-    readability-*
+    readability-*,
+    -readability-named-parameter,
+    -readability-uppercase-literal-suffix
 CheckOptions:
     - key: cppcoreguidelines-avoid-magic-numbers.IgnoreAllFloatingPointValues
       value: true