-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsonar-project.properties
More file actions
35 lines (29 loc) · 1.03 KB
/
sonar-project.properties
File metadata and controls
35 lines (29 loc) · 1.03 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
sonar.projectKey=smartcontractkit_chainlink_deployments_framework
sonar.projectName=chainlink_deployments_framework
sonar.sources=.
sonar.python.version=3.8
# Full exclusions from the static analysis
sonar.exclusions=\
docs/**/*,\
**/mocks/**/*,\
**/mocks_test.go,\
**/*.json, \
**/*.pb.go, \
engine/cld/legacy/**/*, \
**/testutils/**/*
# docs/**/*, # Documentation directory
# **/mocks/**/* # Any generated mocks directory
# **/mocks_test.go # Standard generated mocks test file
# **/*.json \ # JSON files - speed up indexing
# **/*.pb.go # Protobuf generated files
# engine/cld/legacy/**/* # Legacy code that has been ported over. This will be removed in the future.
# **/testutils/**/* # Test utilities directory
sonar.coverage.exclusions=\
**/*_test.go, \
**/testhelpers/**/*, \
deployment/**/*
#deployment/**/* # deployment package - temporary exclusion
# Tests' root folder, inclusions (tests to check and count) and exclusions
sonar.tests=.
sonar.test.inclusions=\
**/*_test.go