-
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.
Codacy requires us to have a config file to be able to adjust the checks that we want to ignore in the individual tools that prospector is running.
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 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,23 @@ | ||
# Config must be compatible with prospector 1.7.7 due to Python 3.6 support. | ||
# Pyright will run in a GitHub workflow as it was added in Prospector 1.10 | ||
|
||
max-line-length: 120 | ||
inherits: | ||
- strictness_veryhigh | ||
|
||
dodgy: | ||
run: true | ||
|
||
mccabe: | ||
run: true | ||
|
||
pydocstyle: | ||
run: true | ||
|
||
pyflakes: | ||
run: true | ||
disable: | ||
- F841 # Covered by pylint | ||
|
||
vulture: | ||
run: true |
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