Spaces:
Runtime error
Runtime error
Upload llama.cpp/.clang-tidy with huggingface_hub
Browse files- llama.cpp/.clang-tidy +24 -0
llama.cpp/.clang-tidy
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
Checks: >
|
| 3 |
+
bugprone-*,
|
| 4 |
+
-bugprone-easily-swappable-parameters,
|
| 5 |
+
-bugprone-implicit-widening-of-multiplication-result,
|
| 6 |
+
-bugprone-misplaced-widening-cast,
|
| 7 |
+
-bugprone-narrowing-conversions,
|
| 8 |
+
readability-*,
|
| 9 |
+
-readability-avoid-unconditional-preprocessor-if,
|
| 10 |
+
-readability-function-cognitive-complexity,
|
| 11 |
+
-readability-identifier-length,
|
| 12 |
+
-readability-implicit-bool-conversion,
|
| 13 |
+
-readability-magic-numbers,
|
| 14 |
+
-readability-uppercase-literal-suffix,
|
| 15 |
+
-readability-simplify-boolean-expr,
|
| 16 |
+
clang-analyzer-*,
|
| 17 |
+
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
|
| 18 |
+
performance-*,
|
| 19 |
+
portability-*,
|
| 20 |
+
misc-*,
|
| 21 |
+
-misc-const-correctness,
|
| 22 |
+
-misc-non-private-member-variables-in-classes,
|
| 23 |
+
-misc-no-recursion,
|
| 24 |
+
FormatStyle: none
|