-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New checks added to Github workflow AEA-1690 (#25)
* Dependencies to perform more checks installed. * Commands with checks added to Makefile. * Pipfile.lock added. * Github checks added to workflow. * Pipfile.lock updated. * Darglint config added. * Ignore "assert" error on Bandit run added. * Isort issues fixed. * Unnecessary check removed. * Vulture whitelist added. * Unnecessary info removed from comments. * Excluded from Flake8: vulture_whitelist.py * Excluded from Mypy: vulture_whitelist.py * Checks order changed. * Lock updated, versions fixed. * Isort run in workflow fixed. * Workflow fixed. * Coverage version frozen to Pipfile to pass safety check. * Coverage safety warning ignored, lock updated. * Scripts updated. * Pylint setup added, makefile updated. * Pylintrc updated. * Pylintrc updated. * Pylintrc updated. * Pylint options updated. * Staking module issues fixed. * Pass replaced with "..." * Auth and Crypro modules docstrings added. * Crypto module docstrings added. * Docstrings added to Auth module. * Auth pylint issues fixed. * Docstrings added to the Bank module. * Test helpers pylint issues fixed. * Pylint issues fixed. * Unnecessary blank line removed. * Makefile updated. * chorse: fix pylint issues * cleanup: apply linters * cleanup: cleaning up the makefile Co-authored-by: ali <[email protected]>
- Loading branch information
1 parent
d4ad1b9
commit 381c686
Showing
36 changed files
with
1,568 additions
and
160 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 |
---|---|---|
|
@@ -2,8 +2,6 @@ | |
*.py[cgo] | ||
*.egg-info/ | ||
build/ | ||
Pipfile.lock | ||
|
||
# IDEs | ||
.idea/ | ||
|
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,20 @@ | ||
[MESSAGES CONTROL] | ||
disable=C0103, C0301, R0801, E1101 | ||
|
||
[IMPORTS] | ||
ignored-modules= | ||
|
||
[DESIGN] | ||
min-public-methods=1 | ||
max-public-methods=36 | ||
max-returns=10 | ||
max-bool-expr=7 | ||
max-args=27 | ||
max-locals=31 | ||
max-statements=80 | ||
max-parents=11 | ||
max-branches=24 | ||
max-attributes=38 | ||
|
||
[REFACTORING] | ||
max-nested-blocks=6 |
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.