-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added isort to setup, makefile and tox
- Loading branch information
1 parent
fb4bb48
commit 91ed2d0
Showing
4 changed files
with
25 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[settings] | ||
profile=black | ||
force_grid_wrap=1 | ||
multi_line_output=3 | ||
honor_noqa=true | ||
float_to_top=true | ||
combine_as_imports=true | ||
force_sort_within_sections=true | ||
include_trailing_comma=true | ||
extra_standard_library=pytest | ||
known_first_party=eth | ||
line_length=88 | ||
use_parentheses=true | ||
# skip `__init__.py` files because sometimes order of initialization is important | ||
skip=__init__.py |
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