-
Notifications
You must be signed in to change notification settings - Fork 15
/
.sonarcloud.properties
25 lines (19 loc) · 1.05 KB
/
.sonarcloud.properties
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
projectKey=I2PC_xmipp
sonar.organization=i2pc
# This is the name and version displayed in the SonarCloud UI.
sonar.projectVersion=3.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=src/
sonar.tests=src/
# Don't use .gitignore for auto exclusion, as it doesn't work properly and exclude almost everything
sonar.scm.exclusions.disabled=true
# NOTE - be careful with excusion rules. If you include formerly excluded folder, all files that include
# headers from it will be analyzed again! https://community.sonarsource.com/t/sonarscanner-cache-not-working-properly/29451
sonar.inclusions=xmipp, scripts/**/*
sonar.exclusions=src/**/external/**/*, src/**/legacy/**/*, src/**/legacy/**/**/*, src/**/resources/**/*, src/**/tests/**/*
sonar.test.inclusions=src/**/tests/**/*
sonar.test.exclusions=src/**/*
# see https://docs.travis-ci.com/user/reference/overview/#virtualisation-environment-vs-operating-system
sonar.cfamily.build-wrapper-output=bw-outputs
# Python version to analyze Python code
sonar.python.version=3