-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathsonar-project.properties
More file actions
54 lines (42 loc) · 1.76 KB
/
sonar-project.properties
File metadata and controls
54 lines (42 loc) · 1.76 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
# SonarQube Cloud project configuration for Receptor
# Complete documentation: https://docs.sonarqube.org/latest/analysis/analysis-parameters/
# =============================================================================
# PROJECT IDENTIFICATION (REQUIRED)
# =============================================================================
# The unique project identifier. This is mandatory.
# Do not duplicate or reuse!
# Available characters: [a-zA-Z0-9_:\.\-]
# Must have least one non-digit.
sonar.projectKey=ansible_receptor
sonar.organization=ansible
# Project metadata
sonar.projectName=receptor
# =============================================================================
# SOURCE AND TEST CONFIGURATION
# =============================================================================
# Source directories to analyze
sonar.sources=.
sonar.exclusions=\
**/*_test.go,\
**/mock_*,\
**/mock_*/**,\
**/tests/**
# Test directories
sonar.tests=.
sonar.test.inclusions=**/*_test.go
# Set branch-specific new code definition
#
# This is important to always check against the main branch for new PRs,
# otherwise the PR may fail during backporting, since the old version of the code
# may not respect the minimum requirements for the existing Quality Gate.
sonar.newCode.referenceBranch=devel
# =============================================================================
# LANGUAGE CONFIGURATION
# =============================================================================
# File encoding
sonar.sourceEncoding=UTF-8
# =============================================================================
# REPORTS AND COVERAGE
# =============================================================================
sonar.go.coverage.reportPaths=coverage.txt
sonar.python.version=3.12