-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
--- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# 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=src/ | ||
sonar.tests=test/ | ||
|
||
# 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=example/ | ||
|
||
sonar.issue.ignore.multicriteria=e1,e2 | ||
# exclude False Positive findings for instantiating CDK objects only | ||
sonar.issue.ignore.multicriteria.e1.ruleKey=typescript:S1848 | ||
sonar.issue.ignore.multicriteria.e1.resourceKey=src/**/*.ts | ||
sonar.issue.ignore.multicriteria.e2.ruleKey=typescript:S3776 | ||
sonar.issue.ignore.multicriteria.e2.resourceKey=src/index.ts | ||
|
||
# Code coverage Specific Properties | ||
sonar.coverage.exclusions=examples/** | ||
sonar.javascript.lcov.reportPaths=coverage/lcov.info | ||
|
||
sonar.junit.reportPaths=test-reports/ | ||
sonar.junit.reportFormat=xml | ||
|
||
# Encoding of the source files | ||
sonar.sourceEncoding=UTF-8 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.