forked from vowstar/qsoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cppcheck-suppressions
More file actions
55 lines (44 loc) · 1.05 KB
/
.cppcheck-suppressions
File metadata and controls
55 lines (44 loc) · 1.05 KB
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
# Cppcheck suppressions file
# Suppress warnings for system includes and Qt-generated files
# System includes
missingIncludeSystem
# Qt MOC files - suppress missing include warnings
missingInclude:*test/*.cpp
missingInclude:*src/gui/*.cpp
# Qt MOC, UIC, RCC generated files - suppress all errors in these files
*:*_moc.cpp
*:moc_*.cpp
*:*_ui.h
*:ui_*.h
*:qrc_*.cpp
# Build directories - suppress all errors in build directories
*:build/*
*:*/build/*
*:*_build/*
# Qt autogen directories
*:*_autogen/*
*:*/autogen/*
# External libraries
*:external/*
*:*/external/*
# Common false positives
unusedFunction
unmatchedSuppression
preprocessorErrorDirective
# Qt-specific macro errors
unknownMacro
checkersReport
# Qt-specific suppressions
noExplicitConstructor
# Additional suppressions for common false positives
constParameterPointer
constVariablePointer
normalCheckLevelMaxBranches
unreadVariable
unusedStructMember
useStlAlgorithm
variableScope
# Performance-related suppressions that are often false positives
passedByValue
redundantAssignment
redundantInitialization