Skip to content

Commit

Permalink
Update line_length and single_line_exclusions for google profile
Browse files Browse the repository at this point in the history
  • Loading branch information
jagapiou committed Sep 29, 2023
1 parent 53b1f64 commit fab2404
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion isort/profiles.py
Expand Up @@ -24,7 +24,13 @@
"force_single_line": True,
"force_sort_within_sections": True,
"lexicographical": True,
"single_line_exclusions": ("typing",),
"line_length": 1000,
"single_line_exclusions": (
"collections.abc",
"six.moves",
"typing",
"typing_extensions",
),
"order_by_type": False,
"group_by_package": True,
}
Expand Down

0 comments on commit fab2404

Please sign in to comment.