Skip to content

Commit

Permalink
Tweak isort config (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
neob91-close authored Dec 1, 2022
1 parent 1f6a3c8 commit 8c6a573
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ exclude = '''

[tool.isort]
skip = ['.git', 'venv']
known_tests = ['tests']
known_tests = 'tests'
sections = ['FUTURE', 'STDLIB', 'THIRDPARTY', 'FIRSTPARTY', 'TESTS', 'LOCALFOLDER']
default_section = 'THIRDPARTY'
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
multi_line_output = 3
line_length = 78
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
line_length = 79
float_to_top = true

0 comments on commit 8c6a573

Please sign in to comment.