File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,19 @@ sonar.organization=ledgerwatch
33sonar.projectName =erigon
44
55sonar.sources =.
6- sonar.exclusions =**/*.pb.go,cmd/rpcdaemon/graphql/graph/generated.go,erigon-lib/pedersen_hash/**
6+ sonar.exclusions =**/*.pb.go,cmd/rpcdaemon/graphql/graph/generated.go
77
88sonar.tests =.
99sonar.test.inclusions =**/*_test.go,tests/**
1010
1111sonar.go.coverage.reportPaths =coverage-erigon.out,coverage-erigon-lib.out
12+
13+ # The only way to get an accurate analysis of C/C++/Objective-C files is
14+ # by using the SonarSource build-wrapper and setting the property "sonar.cfamily.build-wrapper-output"
15+ # or by using Clang Compilation Database and setting the property "sonar.cfamily.compile-commands".
16+ #
17+ # If you don't want to analyze C/C++/Objective-C files, then prevent them from being analyzed
18+ # by setting the following properties:
19+ sonar.c.file.suffixes =-
20+ sonar.cpp.file.suffixes =-
21+ sonar.objc.file.suffixes =-
You can’t perform that action at this time.
0 commit comments