-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from cbdq-io/bugfix/28-edge-case-of-connection…
…-string-becomes-an-invalid-url-according-to-urlparse Bugfix/28 edge case of connection string becomes an invalid url according to urlparse
- Loading branch information
Showing
13 changed files
with
209 additions
and
32 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 |
---|---|---|
|
@@ -165,5 +165,6 @@ cython_debug/ | |
.python-version | ||
|
||
.qlty/* | ||
!.qlty/qlty.toml | ||
!.qlty/configs/ | ||
!.qlty/configs/** |
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,103 @@ | ||
# This file was automatically generated by `qlty init`. | ||
# You can modify it to suit your needs. | ||
# We recommend you to commit this file to your repository. | ||
# | ||
# This configuration is used by both Qlty CLI and Qlty Cloud. | ||
# | ||
# Qlty CLI -- Code quality toolkit for developers | ||
# Qlty Cloud -- Fully automated Code Health Platform | ||
# | ||
# Try Qlty Cloud: https://qlty.sh | ||
# | ||
# For a guide to configuration, visit https://qlty.sh/d/config | ||
# Or for a full reference, visit https://qlty.sh/d/qlty-toml | ||
config_version = "0" | ||
|
||
exclude_patterns = [ | ||
"*_min.*", | ||
"*-min.*", | ||
"*.min.*", | ||
"**/*.d.ts", | ||
"**/.yarn/**", | ||
"**/bower_components/**", | ||
"**/build/**", | ||
"**/cache/**", | ||
"**/config/**", | ||
"**/db/**", | ||
"**/deps/**", | ||
"**/dist/**", | ||
"**/extern/**", | ||
"**/external/**", | ||
"**/generated/**", | ||
"**/Godeps/**", | ||
"**/gradlew/**", | ||
"**/mvnw/**", | ||
"**/node_modules/**", | ||
"**/protos/**", | ||
"**/seed/**", | ||
"**/target/**", | ||
"**/testdata/**", | ||
"**/vendor/**", | ||
"**/assets/**", | ||
"**/tests/**", | ||
"CHANGELOG.md", | ||
".devcontainer/devcontainer.json" | ||
] | ||
|
||
test_patterns = [ | ||
"**/test/**", | ||
"**/spec/**", | ||
"**/*.test.*", | ||
"**/*.spec.*", | ||
"**/*_test.*", | ||
"**/*_spec.*", | ||
"**/test_*.*", | ||
"**/spec_*.*", | ||
] | ||
|
||
[[source]] | ||
name = "default" | ||
default = true | ||
|
||
[[plugin]] | ||
name = "actionlint" | ||
|
||
[[plugin]] | ||
name = "bandit" | ||
version = "1.7.9" | ||
|
||
[[plugin]] | ||
name = "checkov" | ||
|
||
[[plugin]] | ||
name = "golangci-lint" | ||
|
||
[[plugin]] | ||
name = "markdownlint" | ||
version = "0.41.0" | ||
|
||
[[plugin]] | ||
name = "osv-scanner" | ||
|
||
[[plugin]] | ||
name = "prettier" | ||
|
||
[[plugin]] | ||
name = "ripgrep" | ||
|
||
[[plugin]] | ||
name = "ruff" | ||
version = "0.5.3" | ||
|
||
[[plugin]] | ||
name = "trivy" | ||
drivers = [ | ||
"config", | ||
"fs-vuln", | ||
] | ||
|
||
[[plugin]] | ||
name = "trufflehog" | ||
|
||
[[plugin]] | ||
name = "yamllint" |
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
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
@system | ||
Feature: Data Flow | ||
In order to confirm rules | ||
As a Service Bus Router | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
@unit | ||
Feature: Environment Configuration Parser | ||
|
||
Test that we can correctly extract configuration from | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
@unit | ||
Feature: Router Rule | ||
In order to route a message | ||
As a Router | ||
|
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.