-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsonar-project.properties
More file actions
49 lines (39 loc) · 2.07 KB
/
Copy pathsonar-project.properties
File metadata and controls
49 lines (39 loc) · 2.07 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
sonar.projectKey=fernandotonon_QtMeshEditor
sonar.organization=fernandotonon
# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=QtMeshEditor
#sonar.projectVersion=1.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
#sonar.sources=.
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
# Main source directories
sonar.sources=src/
sonar.tests=src/,tests/
# Test file patterns - include all our new test files
sonar.test.inclusions=**/*_test.cpp,**/test_*.cpp,tests/**/*.cpp,tests/**/*.qml
# Exclude directories and files from analysis
sonar.exclusions=**/OgreXML/**,**/dependencies/**,**/*_autogen/**,**/CMakeFiles/**,**/ui_files/**,**/moc_*,**/_deps/**,**/qrc_*.cpp
# Coverage exclusions - test infrastructure, optional AI features, and the
# experimental ENABLE_PS1_RIP runtime (off by default; emulator/libretro
# integration + Qt rip-session GUI windows that can't be meaningfully unit-
# tested headlessly). The static PS1 format parsers under src/PS1/*.cpp
# (PS1TMD/TIM/PLY/RSD/MAT) stay IN coverage — they're pure-data and tested.
sonar.coverage.exclusions=**/*_test.cpp,**/test_*.cpp,tests/**/*.cpp,tests/**/*.qml,\
**/*_autogen/**,**/TestHelpers.h,**/test_main.cpp,\
**/LLMManager.cpp,**/LLMWorker.cpp,**/ModelDownloader.cpp,**/SDManager.cpp,\
**/AIChatManager.cpp,**/AIChatManager.h,**/SDManager.h,**/SDWorker.h,\
src/PS1/runtime/**
# Coverage settings for C++ projects
# Generic coverage report (SonarQube XML format from gcovr)
# Note: Do NOT use sonar.cfamily.gcov.reportsPath - it overrides generic coverage with incorrect data
sonar.coverageReportPaths=coverage.xml
# Enable C++ file analysis with build-wrapper support
# The build-wrapper provides compilation data for SonarCloud analysis
# File suffixes for C/C++ source files
sonar.c.file.suffixes=.c
sonar.cpp.file.suffixes=.cpp,.cc,.cxx,.c++,.hpp,.hh,.hxx,.h++,.h
sonar.objc.file.suffixes=.m,.mm
# C++ analysis configuration using build-wrapper for SonarCloud
sonar.cfamily.cache.enabled=true
sonar.cfamily.threads=4