forked from smartcontractkit/chainlink-common
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
39 lines (34 loc) · 859 Bytes
/
Copy pathsonar-project.properties
File metadata and controls
39 lines (34 loc) · 859 Bytes
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
# projectKey is required (may be found under "Project Information" in Sonar or in project url)
sonar.projectKey=smartcontractkit_chainlink-common
sonar.sources=.
sonar.sourceEncoding=UTF-8
sonar.python.version=3.8
# Full exclusions from the static analysis
sonar.exclusions=\
**/mocks/**/*,\
**/testdata/**/*,\
**/script/**/*,\
**/generated/**/*,\
**/fixtures/**/*,\
**/docs/**/*,\
**/tools/**/*,\
**/*.pb.go,\
**/*report.xml,\
**/*.txt,\
**/*.abi,\
**/*.bin,\
**/generated_*,\
**/*_generated.go,\
**/mock_*.go
# Coverage exclusions
sonar.coverage.exclusions=\
**/test/**/*,\
**/*_test.go,\
observability-lib/**,\
**/fuzz/**/*,\
**/capabilities/**/*test/**/*
# Tests' root folder, inclusions (tests to check and count) and exclusions
sonar.tests=.
sonar.test.inclusions=**/*_test.go
# Duplication exclusions
sonar.cpd.exclusions=**/observability-lib/**/*