From b5011169df4549e9bf7bc2a971e6f0e4594467eb Mon Sep 17 00:00:00 2001 From: Prathmesh Ranaut Date: Thu, 20 Apr 2023 01:01:03 +0530 Subject: [PATCH] Added isort to setup, makefile and tox --- .isort.cfg | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .isort.cfg diff --git a/.isort.cfg b/.isort.cfg new file mode 100644 index 000000000..46b300123 --- /dev/null +++ b/.isort.cfg @@ -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 \ No newline at end of file