Skip to content

Commit

Permalink
Merge pull request #1926 from mauritsvanrees/issue/1925
Browse files Browse the repository at this point in the history
Update plone profile: copy of black, plus three settings.
  • Loading branch information
timothycrosley committed May 11, 2022
2 parents c6a4196 + 0ac4fe1 commit 2cb757e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions isort/profiles.py
Expand Up @@ -33,12 +33,14 @@
"force_sort_within_sections": True,
"lexicographical": True,
}
plone = {
"force_alphabetical_sort": True,
"force_single_line": True,
"lines_after_imports": 2,
"line_length": 200,
}
plone = black.copy()
plone.update(
{
"force_alphabetical_sort": True,
"force_single_line": True,
"lines_after_imports": 2,
}
)
attrs = {
"atomic": True,
"force_grid_wrap": 0,
Expand Down

0 comments on commit 2cb757e

Please sign in to comment.