-
-
Notifications
You must be signed in to change notification settings - Fork 460
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 #2653 from skanda890/main
Create .deepsource.toml, .whitesource, and Update WebBasedData/test_urls.py
- Loading branch information
Showing
3 changed files
with
81 additions
and
2 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,65 @@ | ||
version = 1 | ||
|
||
[[analyzers]] | ||
name = "python" | ||
enabled = true | ||
|
||
[analyzers.meta] | ||
runtime_version = "3.x.x" | ||
|
||
[analyzers.pylint] | ||
enabled = true | ||
config = """ | ||
[MESSAGES CONTROL] | ||
disable = C0111 # Disables missing docstring warnings | ||
""" | ||
|
||
[[analyzers]] | ||
name = "javascript" | ||
enabled = true | ||
|
||
[analyzers.meta] | ||
plugins = [ | ||
"react", | ||
"vue", | ||
"angular" | ||
] | ||
environment = [ | ||
"nodejs", | ||
"mocha", | ||
"mongo", | ||
"browser", | ||
"jasmine", | ||
"cypress", | ||
"vitest", | ||
"jquery", | ||
"jest" | ||
] | ||
|
||
[[transformers]] | ||
name = "autopep8" | ||
enabled = false # Disables autopep8 transformer | ||
|
||
[[transformers]] | ||
name = "isort" | ||
enabled = false # Disables isort transformer | ||
|
||
[[transformers]] | ||
name = "black" | ||
enabled = false # Disables black transformer | ||
|
||
[[transformers]] | ||
name = "yapf" | ||
enabled = false # Disables yapf transformer | ||
|
||
[[transformers]] | ||
name = "ruff" | ||
enabled = false # Disables ruff transformer | ||
|
||
[[transformers]] | ||
name = "standardjs" | ||
enabled = false # Disables standardjs transformer | ||
|
||
[[transformers]] | ||
name = "prettier" | ||
enabled = false # Disables prettier transformer |
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,14 @@ | ||
{ | ||
"scanSettings": { | ||
"baseBranches": [] | ||
}, | ||
"checkRunSettings": { | ||
"vulnerableCheckRunConclusionLevel": "failure", | ||
"displayMode": "diff", | ||
"useMendCheckNames": true | ||
}, | ||
"issueSettings": { | ||
"minSeverityLevel": "LOW", | ||
"issueType": "DEPENDENCY" | ||
} | ||
} |
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