summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorBert JW Regeer <xistence@0x58.com>2020-07-12 16:57:45 -0700
committerGitHub <noreply@github.com>2020-07-12 16:57:45 -0700
commitd36be863725aec17573e87e373941cec548290f9 (patch)
tree43ab0c4b6db6c05418340e9e18f188e09a02f9ff /pyproject.toml
parent5269b28e728a470b94f194bf8febd46278b1f356 (diff)
parenta920c2530c130688c5d01ed999a43ccf0cb012fa (diff)
downloadpyramid-d36be863725aec17573e87e373941cec548290f9.tar.gz
pyramid-d36be863725aec17573e87e373941cec548290f9.tar.bz2
pyramid-d36be863725aec17573e87e373941cec548290f9.zip
Merge pull request #3604 from Pylons/update-isort
Update isort to 5.x
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 6e28b2347..9bdd2274c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -21,11 +21,13 @@ exclude = '''
# This next section only exists for people that have their editors
# automatically call isort, black already sorts entries on its own when run.
[tool.isort]
+profile = "black"
multi_line_output = 3
+src_paths = ["src", "tests"]
+skip_glob = ["docs/*"]
include_trailing_comma = true
force_grid_wrap = false
combine_as_imports = true
-use_parenthesis = true
line_length = 79
force_sort_within_sections = true
no_lines_before = "THIRDPARTY"