summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2019-12-29 22:44:30 -0600
committerGitHub <noreply@github.com>2019-12-29 22:44:30 -0600
commitcc396692d82441f8142fb14041542ebd2dad6f0a (patch)
treeb22cabb8d796ba6fecb359f991fcc61299581eb5 /pyproject.toml
parentce48c934046f470f8c32ec98666f484f482f32f0 (diff)
parent3006bdc7b9d5590415d15005c755e307ddb588ca (diff)
downloadpyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.tar.gz
pyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.tar.bz2
pyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.zip
Merge pull request #3554 from mmerickel/isort
isort
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml8
1 files changed, 7 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index d8ec559df..6e28b2347 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -23,6 +23,12 @@ exclude = '''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
-force_grid_wrap = 0
+force_grid_wrap = false
combine_as_imports = true
+use_parenthesis = true
line_length = 79
+force_sort_within_sections = true
+no_lines_before = "THIRDPARTY"
+sections = "FUTURE,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
+default_section = "THIRDPARTY"
+known_first_party = "pyramid"