-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update sonarcloud related reports, pull request template
Signed-off-by: Sai Sankeerth <sanpj2292@github.com>
- Loading branch information
Sai Sankeerth
committed
Jan 31, 2024
1 parent
07c544c
commit 560e9ad
Showing
7 changed files
with
114 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
build | ||
test | ||
reports/ | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
## What are the changes introduced in this PR? | ||
|
||
Write a brief explainer on your code changes. | ||
|
||
## What is the related Linear task? | ||
|
||
Resolves INT-XXX | ||
|
||
## Please explain the objectives of your changes below | ||
|
||
Put down any required details on the broader aspect of your changes. If there are any dependent changes, **mandatorily** mention them here | ||
|
||
### Any changes to existing capabilities/behaviour, mention the reason & what are the changes ? | ||
|
||
N/A | ||
|
||
### Any new dependencies introduced with this change? | ||
|
||
N/A | ||
|
||
### Any new generic utility introduced or modified. Please explain the changes. | ||
|
||
N/A | ||
|
||
### Any technical or performance related pointers to consider with the change? | ||
|
||
N/A | ||
|
||
<hr> | ||
|
||
### Developer checklist | ||
|
||
- [ ] My code follows the style guidelines of this project | ||
|
||
- [ ] **No breaking changes are being introduced.** | ||
|
||
- [ ] All related docs linked with the PR? | ||
|
||
- [ ] All changes manually tested? | ||
|
||
- [ ] Any documentation changes needed with this change? | ||
|
||
- [ ] Is the PR limited to 10 file changes? | ||
|
||
- [ ] Is the PR limited to one linear task? | ||
|
||
- [ ] Are relevant unit and component test-cases added? | ||
|
||
### Reviewer checklist | ||
|
||
- [ ] Is the type of change in the PR title appropriate as per the changes? | ||
|
||
- [ ] Verified that there are no credentials or confidential data exposed with the changes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,5 +143,5 @@ dist | |
.svelte-kit | ||
|
||
# Others | ||
|
||
reports/ | ||
# End of https://www.toptal.com/developers/gitignore/api/node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
sonar.log.level=INFO | ||
sonar.verbose=false | ||
sonar.qualitygate.wait=false | ||
|
||
# Project details | ||
sonar.projectKey=rudderlabs_rudderstack-shopify-tracker | ||
sonar.organization=rudderlabs | ||
sonar.projectName=rudderstack-shopify-tracker | ||
sonar.projectVersion=1.4.9 | ||
|
||
# Meta-data for the project | ||
sonar.links.scm=https://github.com/rudderlabs/rudderstack-shopify-tracker | ||
sonar.links.issue=https://github.com/rudderlabs/rudderstack-shopify-tracker/issues | ||
|
||
# Path to reports | ||
sonar.javascript.lcov.reportPaths=reports/coverage/lcov.info,reports/ts-coverage/lcov.info | ||
sonar.testExecutionReportPaths=reports/sonar/results-report.xml | ||
sonar.eslint.reportPaths=reports/eslint.json | ||
|
||
# Path to sources | ||
sonar.sources=src | ||
sonar.inclusions=**/*.js | ||
sonar.exclusions=**/*.json,**/*.html,**/*.png,**/*.jpg,**/*.gif,**/*.svg,**/*.yml | ||
|
||
# Path to tests | ||
sonar.tests=test | ||
sonar.test.inclusions=**/*.test.js,**/*.test.ts | ||
sonar.test.exclusions=**/*.json,**/*.html,**/*.png,**/*.jpg,**/*.gif,**/*.svg | ||
sonar.coverage.exclusions=test/**/*,**/*.json,**/*.html,**/*.png,**/*.jpg,**/*.gif,**/*.svg | ||
|
||
# Source encoding | ||
sonar.sourceEncoding=UTF-8 | ||
|
||
# Exclusions for copy-paste detection | ||
sonar.cpd.exclusions=test/**/* |