forked from Komet/MediaElch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-tidy
68 lines (66 loc) · 5.86 KB
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
Checks: '*, -altera-*, -fuchsia-*, -llvmlibc-*, -linuxkernel-*, -google-*, -misc-*, -zircon-*, -bugprone-narrowing-conversions, -bugprone-suspicious-enum-usage, -bugprone-suspicious-include, -readability-uppercase-literal-suffix, -readability-magic-numbers, -readability-identifier-naming, -readability-convert-member-functions-to-static, -readability-redundant-access-specifiers, -readability-function-cognitive-complexity, -readability-identifier-length, -readability-else-after-return, -readability-identifier-length, -performance-unnecessary-value-param, -performance-move-const-arg, -clang-analyzer-cplusplus.NewDeleteLeaks, -modernize-avoid-c-arrays, -modernize-use-trailing-return-type, -modernize-use-auto, -hicpp-no-array-decay, -hicpp-avoid-c-arrays, -hicpp-uppercase-literal-suffix, -hicpp-special-member-functions, -hicpp-move-const-arg, -hicpp-signed-bitwise, -hicpp-use-auto, -hicpp-function-size, -cert-err58-cpp, -clang-diagnostic-error, -cppcoreguidelines-pro-bounds-array-to-pointer-decay, -cppcoreguidelines-owning-memory, -cppcoreguidelines-pro-type-vararg, -cppcoreguidelines-avoid-magic-numbers, -cppcoreguidelines-avoid-c-arrays, -cppcoreguidelines-narrowing-conversions, -cppcoreguidelines-macro-usage, -cppcoreguidelines-special-member-functions, -llvm-namespace-comment, -llvm-else-after-return'
WarningsAsErrors: ''
HeaderFilterRegex: ''
FormatStyle: file
# Why are some warnings disabled?
# We disabled these checks because there are either false positives
# or too many warnings at the moment.
# They will be enabled step by step.
#
# altera-* # Some kernel checks not meant for non-kernel stuff.
# fuchsia-* # Too strict for any form of normal C++ programming; degrades C++ literally to C
# llvmlibc-*
# linuxkernel-*
# google-*
# misc-*
# bugprone-narrowing-conversions # Too many warnings
# bugprone-suspicious-enum-usage # In Qt6 complains about Qt::CTRL | Qt::Key_a which is correct.
# bugprone-suspicious-include # Warns about MOC files (generated by Qt). TODO: Remove once we require a recent CMake version (see https://gitlab.kitware.com/cmake/cmake/-/merge_requests/8467)
# readability-uppercase-literal-suffix # We use lowercase literals suffixes
# readability-magic-numbers # Used heavily in QColor constructors
# readability-identifier-naming # Somehow not stable; warnings don't tell what config parameter is responsible
# readability-convert-member-functions-to-static # TODO: While useful, too many changes.
# readability-redundant-access-specifiers # We use multiple access specifiers for grouping (e.g. public/private)
# readability-function-cognitive-complexity # TODO
# readability-identifier-length # TODO
# readability-else-after-return # Does not allow certain structured programming paradigms.
# readability-identifier-length # Too noisy for variables such as "nl = '\n'"
# performance-unnecessary-value-param # Too many warnings; we still need to fix those
# performance-move-const-arg # TODO
# clang-analyzer-cplusplus.NewDeleteLeaks # False positive with QTimer::singleShot
# modernize-avoid-c-arrays # qrc and moc files use c arrays...
# modernize-use-trailing-return-type # Not our code base's style
# modernize-use-auto # Same as hicpp-use-auto
# hicpp-no-array-decay # qrc and moc files use c arrays...
# hicpp-avoid-c-arrays # qrc and moc files use c arrays...
# hicpp-uppercase-literal-suffix # we use lowercase literal suffixes; clang-tidy has not option for that, though
# hicpp-special-member-functions # in qrc_*.cpp files
# hicpp-move-const-arg # TODO
# hicpp-signed-bitwise # TODO
# hicpp-use-auto # I sometimes prefer to explicitly write the type
# hicpp-function-size # Probably useful, but in combination of MOC and Catch2, too many warnings.
# cert-err58-cpp # qrc and moc files use static storage duration objects that may throw
# clang-diagnostic-error # warn but don't make warnings errors
# cppcoreguidelines-pro-bounds-array-to-pointer-decay # Nice but useless in qDebug() macros with string literals
# cppcoreguidelines-owning-memory # we heavily use new and raw pointers because of Qt
# cppcoreguidelines-pro-type-vararg # qFatal() and others use c-style vararg functions
# cppcoreguidelines-avoid-magic-numbers # magic numbers in e.g. QColor
# cppcoreguidelines-avoid-c-arrays # qrc and moc files use c arrays...
# cppcoreguidelines-narrowing-conversions # Too many warnings
# cppcoreguidelines-macro-usage # Qt marcros...
# cppcoreguidelines-special-member-functions # in qrc_*.cpp files
# llvm-namespace-comment # Useful but qrc_*.cpp files again...
# llvm-else-after-return # Does not allow certain structured programming paradigms.
CheckOptions:
- key: bugprone-assert-side-effect.CheckFunctionCalls
value: 1
- key: bugprone-assert-side-effect.AssertMacros
value: 'assert'
- key: readability-identifier-length.IgnoredVariableNames
value: '^(i|os|id|it|x|y|rx|db)$'
- key: readability-identifier-length.IgnoredParameterNames
value: '^(i|os|id|it|x|y|rx|db)$'
- key: cppcoreguidelines-avoid-do-while.IgnoreMacros
value: true
...