X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/fd9bd07fe551c88f0c1e2d6f411f48b73f3083fc..6d924b01e484d47de835656bab9987c7bbefda5b:/README.md?ds=sidebyside diff --git a/README.md b/README.md index a6d7de8..41ad465 100644 --- a/README.md +++ b/README.md @@ -204,10 +204,26 @@ If a data structure literal (tuple, list, set, dict) or a line of "from" imports cannot fit in the allotted length, it's always split into one element per line. This minimizes diffs as well as enables readers of code to find which commit introduced a particular entry. This also -makes *Black* compatible with [isort](https://pypi.org/p/isort/). Use -`multi_line_output=3`, `include_trailing_comma=True`, -`force_grid_wrap=0`, and `line_length=88` in your isort config. +makes *Black* compatible with [isort](https://pypi.org/p/isort/) with +the following configuration. +
+A compatible `.isort.cfg` + +``` +[settings] +multi_line_output=3 +include_trailing_comma=True +force_grid_wrap=0 +combine_as_imports=True +line_length=88 +``` + +The equivalent command line is: +``` +$ isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width=88 [ file.py ] +``` +
### Line length