-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.cppcheck
More file actions
40 lines (32 loc) · 1.24 KB
/
.cppcheck
File metadata and controls
40 lines (32 loc) · 1.24 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
# Cppcheck configuration for messaging_system
# Suppress "Include file not found" warnings for standard library
--suppress=missingIncludeSystem
# Suppress warnings from external dependencies
--suppress=*:*/container_system/*
--suppress=*:*/thread_system/*
--suppress=*:*/logger_system/*
--suppress=*:*/monitoring_system/*
--suppress=*:*/database_system/*
--suppress=*:*/network_system/*
--suppress=*:*/common_system/*
# Include paths for external systems
--include-path=/Users/raphaelshin/Sources/common_system/include
--include-path=/Users/raphaelshin/Sources/thread_system/include
--include-path=/Users/raphaelshin/Sources/logger_system/include
--include-path=/Users/raphaelshin/Sources/monitoring_system/include
--include-path=/Users/raphaelshin/Sources/container_system
--include-path=/Users/raphaelshin/Sources/database_system
--include-path=/Users/raphaelshin/Sources/network_system/include
# C++ standard
--std=c++20
# Enable only relevant checks
--enable=warning,style,performance,portability
# Exclude directories and file types
--suppress=*:build-*/*
--suppress=*:_builds/*
--suppress=*:.git/*
# Exclude documentation files (use markdownlint instead)
--suppress=*:*.md
--suppress=*:docs/*
# Exclude scripts (use shellcheck instead)
--suppress=*:*.sh