File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Complete documentation with many more options at:
2
+ # https://docs.sonarqube.org/latest/analysis/analysis-parameters/
3
+
4
+ # # The unique project identifier. This is mandatory.
5
+ # Do not duplicate or reuse!
6
+ # Available characters: [a-zA-Z0-9_:\.\-]
7
+ # Must have least one non-digit.
8
+ # Recommended format: <group>:<project>
9
+ sonar.projectKey =ansible_pattern-service
10
+
11
+ sonar.organization =ansible
12
+
13
+ # Customize what paths to scan. Default is .
14
+ sonar.sources =.
15
+
16
+ # Exclude Django migrations from copy-paste detection
17
+ sonar.cpd.exclusions =core/migrations/*.py
18
+
19
+ # Verbose name of project displayed in WUI. Default is set to the projectKey. This field is optional.
20
+ sonar.projectName =pattern-service
21
+
22
+ # Tell sonar scanner where coverage files exist
23
+ sonar.python.coverage.reportPaths =coverage.xml
24
+
25
+ # Exclude test directories from sources
26
+ sonar.exclusions =**/core/tests/*
You can’t perform that action at this time.
0 commit comments