diff options
| author | Rémy HUBSCHER <hubscher.remy@gmail.com> | 2020-04-21 13:59:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-21 13:59:41 +0200 |
| commit | 299c64a48cb6278eebe1d7cc54d878953ecc5fa5 (patch) | |
| tree | 87219e02bedf6d75f15da2b3ab95cbcb4988d55b /.isort.cfg | |
| parent | f0b40578adeca5e9fc75787c00787c20f1072144 (diff) | |
| download | ihatemoney-mirror-299c64a48cb6278eebe1d7cc54d878953ecc5fa5.zip ihatemoney-mirror-299c64a48cb6278eebe1d7cc54d878953ecc5fa5.tar.gz ihatemoney-mirror-299c64a48cb6278eebe1d7cc54d878953ecc5fa5.tar.bz2 | |
Add isort support. (#561)
Diffstat (limited to '.isort.cfg')
| -rw-r--r-- | .isort.cfg | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.isort.cfg b/.isort.cfg new file mode 100644 index 0000000..ba73fb7 --- /dev/null +++ b/.isort.cfg @@ -0,0 +1,13 @@ +[settings] +# Needed for black compatibility +multi_line_output=3 +include_trailing_comma=True +force_grid_wrap=0 +line_length=88 +combine_as_imports=True + +# If set, imports will be sorted within their section independent to the import_type. +force_sort_within_sections=True + +# skip +skip_glob=.local,**/migrations/**,**/node_modules/**,**/node-forge/** |
