forked from ansible/ansible-rulebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sonar-project.properties
29 lines (22 loc) · 1013 Bytes
/
sonar-project.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
26
27
28
29
# Complete documentation with many more options at:
# https://docs.sonarqube.org/latest/analysis/analysis-parameters/
## The unique project identifier. This is mandatory.
# Do not duplicate or reuse!
# Available characters: [a-zA-Z0-9_:\.\-]
# Must have least one non-digit.
# Recommended format: <group>:<project>
sonar.projectKey=ansible_ansible-rulebook
sonar.organization=ansible
# Customize what paths to scan. Default is .
sonar.sources=.
# Verbose name of project displayed in WUI. Default is set to the projectKey. This field is optional.
sonar.projectName=ansible-rulebook
sonar.issue.ignore.multicriteria=e1
# Ignore "should be a variable"
#sonar.issue.ignore.multicriteria.e1.ruleKey=python:S1192
sonar.issue.ignore.multicriteria.e1.resourceKey=**/action/*
# Only scan with python3
sonar.python.version=3.9,3.10,3.11,3.12
# Ignore code dupe for premature code reuse recommened in PR
# https://github.com/ansible/ansible-rulebook/pull/537#issuecomment-1598883529
sonar.cpd.exclusions=**/action/*