Closed awichmann-mintel closed 4 years ago
in setup.cfg
or .isort.cfg
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
skip_glob = */.tox/*, */.venv/*
not_skip = __init__.py
Trying to weigh whether we should stick with expecting the user to configure or force these settings through flags... 🤔
Trying to weigh whether we should stick with expecting the user to configure or force these settings through flags...
So, it's up to the user to create an isort config? Personally, I think we should have a common config and it could live in build-harness
Most repos already do have an .isort.cfg. The problem with assuming
Ok, 🤔 I think we can do this as you've laid it out since we're already assuming this is true by running black immediately after.
We brainstormed a few other ideas, but I think this should work for everyone rn.
Followed these recommendations