]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Reword isort configuration, add --combine-as
authorŁukasz Langa <lukasz@langa.pl>
Tue, 29 May 2018 06:15:07 +0000 (23:15 -0700)
committerŁukasz Langa <lukasz@langa.pl>
Tue, 29 May 2018 06:16:01 +0000 (23:16 -0700)
README.md

index e5a3036fb7bac35fcee8eecb091be3454c9dd3ab..41ad465359e3ecb3c6c0d866eac1e433f2ca2b95 100644 (file)
--- a/README.md
+++ b/README.md
@@ -204,21 +204,27 @@ 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/).
+makes *Black* compatible with [isort](https://pypi.org/p/isort/) with
+the following configuration.
+
+<details>
+<summary>A compatible `.isort.cfg`</summary>
 
-If you do wish to use *Black* alongside `isort`, you can pass the following
-command-line arguments to ensure compatible behaviour:
-```
-$ isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --line-width=88 [ file.py ]
-```
-Or use the equivalent directives in your isort config:
 ```
+[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 ]
+```
+</details>
+
 ### Line length
 
 You probably noticed the peculiar default line length.  *Black* defaults