Skip to content

Instantly share code, notes, and snippets.

@Hrissimir
Created January 18, 2024 15:44
Show Gist options
  • Save Hrissimir/05db35838356104f603d3c0ccca120cf to your computer and use it in GitHub Desktop.
Save Hrissimir/05db35838356104f603d3c0ccca120cf to your computer and use it in GitHub Desktop.
Sample Isort config file
[settings]
skip_gitignore = true
profile=black
multi_line_output = 3
# force one member import per line:
force_single_line = true
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
split_on_trailing_comma = true
honor_noqa = true
known_first_party = YOUR_PACKAGE_NAME_GOES_HERE,tests
src_paths = src,tests
extend_skip=.md,.json,.txt
extend_skip_glob=
*__init__.py,
*__about__.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment