forked from aws-solutions/workload-discovery-on-aws
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsonar-project.properties
49 lines (43 loc) · 1.98 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Customize sonar.sources, sonar.exclusions, sonar.coverage.exclusions, sonar.tests and sonar
# unit test coverage reports based on your solutions
# Refer to https://docs.sonarqube.org/latest/project-administration/narrowing-the-focus/
# for details on sources and exclusions. Note also .gitignore
#
sonar.sources=source, deployment
# Focusing sonarqube analysis on non test code first and reducing noise from analysis of test code. Projects
# can customize the exclusions to include analyzing of test code if desired
sonar.exclusions=\
**/test/**, \
**/tests/**, \
**/test*, \
source/backend/discovery/sandbox/**, \
source/backend/functions/cur-setup/**, \
deployment/*-assets/**, \
deployment/open-source, \
**/node_modules/**, \
**/package/**, \
**/lambda-layers/**, \
**/coverage/**
# Code coverage Specific Properties
sonar.coverage.exclusions=\
**/jest.config.js
## Python Specific Properties*
# coverage
# https://docs.sonarqube.org/pages/viewpage.action?pageId=4784149
# Comma-separated list of ant pattern describing paths to coverage reports, relative to projects
# root. Leave unset to use the default ("coverage-reports/*coverage-*.xml").
sonar.python.coverage.reportPaths=source/backend/functions/drawio/coverage.xml
# Sensor SonarJS Coverage [javascript] was not allowing globbing
# for sonar.javascript.lcov.reportPaths such as this
# source/test/coverage-reports/jest/*/lcov.info
# so we have to provide an explicit list of reportPaths
sonar.javascript.lcov.reportPaths= \
source/frontend/coverage/lcov.info, \
source/backend/discovery/coverage/lcov.info, \
source/backend/functions/account-import-templates-api/coverage/lcov.info, \
source/backend/functions/cost-parser/coverage/lcov.info, \
source/backend/functions/graph-api/coverage/lcov.info, \
source/backend/functions/settings/coverage/lcov.info, \
source/backend/functions/search-api/coverage/lcov.info
# Encoding of the source files
sonar.sourceEncoding=UTF-8