-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: rename webhooks to event streams
Part of the investgigation to see the impact of changing webhooks to event streams
- Loading branch information
Showing
44 changed files
with
1,830 additions
and
1,466 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
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,34 @@ | ||
# Complete documentation with many more options at: | ||
# https://docs.sonarqube.org/latest/analysis/analysis-parameters/ | ||
|
||
## The unique project identifier. This is mandatory. | ||
# Do not duplicate or reuse! | ||
# Available characters: [a-zA-Z0-9_:\.\-] | ||
# Must have least one non-digit. | ||
# Recommended format: <group>:<project> | ||
sonar.projectKey=ansible_eda-server | ||
|
||
sonar.organization=ansible | ||
|
||
# Customize what paths to scan. Default is . | ||
sonar.sources=. | ||
|
||
# Verbose name of project displayed in WUI. Default is set to the projectKey. This field is optional. | ||
sonar.projectName=eda-server | ||
|
||
# Version of project. This field is optional. | ||
#sonar.projectVersion=1.0 | ||
|
||
# Tell sonar scanner where coverage files exist | ||
#sonar.python.coverage.reportPaths=coverage.xml | ||
|
||
sonar.issue.ignore.multicriteria=e1 | ||
# Ignore "should be a variable" | ||
#sonar.issue.ignore.multicriteria.e1.ruleKey=python:S1192 | ||
sonar.issue.ignore.multicriteria.e1.resourceKey=**/migrations/**/* | ||
|
||
# Only scan with python3 | ||
sonar.python.version=3.9,3.10,3.11 | ||
|
||
# Ignore code dupe for the migrations | ||
sonar.cpd.exclusions=**/migrations/*.py |
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
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
Oops, something went wrong.