Created
January 18, 2024 15:44
-
-
Save Hrissimir/05db35838356104f603d3c0ccca120cf to your computer and use it in GitHub Desktop.
Sample Isort config file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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