-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
145 additions
and
139 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
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,29 @@ | ||
# Extend the `pyproject.toml` file in the parent directory. | ||
extend = "../pyproject.toml" | ||
|
||
flake8-pytest-style.fixture-parentheses = false | ||
|
||
ignore = [ | ||
# assert usage is what we do in tests | ||
"S101", | ||
# have to access private members sometimes | ||
"SLF001", | ||
# skipping type annotations for now | ||
"ANN001", | ||
"ANN002", | ||
"ANN003", | ||
"ANN201", | ||
"ANN202", | ||
# no docstrings in tests | ||
"D100", | ||
"D101", | ||
"D102", | ||
"D103", | ||
"D107", | ||
# We need it quite often during RPC and Solidity encoding/decoding | ||
"FBT003", | ||
# Yeah, that's great if your context manager calls are a few characters long | ||
"SIM117", | ||
# Too many false positives in the testing context. | ||
"PLR2004", | ||
] |
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.