mirror of
https://github.com/MorizzG/tool-default-configs.git
synced 2025-12-06 01:22:41 +00:00
38 lines
689 B
YAML
38 lines
689 B
YAML
---
|
|
Checks: [
|
|
bugprone-*,
|
|
clang-analyzer-*,
|
|
clang-diagnostic-*,
|
|
# cppcoreguidelines-*,
|
|
google-*,
|
|
llvm-*,
|
|
misc-*,
|
|
modernize-*,
|
|
performance-*,
|
|
readability-*,
|
|
|
|
-bugprone-easily-swappable-parameters,
|
|
|
|
-cppcoreguidelines-avoid-magic-numbers,
|
|
-cppcoreguidelines-pro-bounds-constant-array-index,
|
|
|
|
-google-objc-function-naming,
|
|
-google-readability-todo,
|
|
|
|
-llvm-header-guard,
|
|
|
|
-misc-no-recursion,
|
|
-modernize-use-nodiscard,
|
|
-modernize-use-trailing-return-type,
|
|
|
|
-performance-avoid-endl,
|
|
|
|
-readability-else-after-return,
|
|
-readability-identifier-length,
|
|
-readability-magic-numbers,
|
|
-readability-math-missing-parentheses,
|
|
]
|
|
|
|
WarningsAsErrors: '*'
|
|
...
|
|
|