Skip to content

Commit

Permalink
Add initial appnexus profile
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed May 17, 2021
1 parent 65b6075 commit 89e1e2c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions isort/profiles.py
Expand Up @@ -61,6 +61,16 @@
"use_parentheses": True,
"line_length": 80,
}
appnexus = {
**black,
"force_sort_within_sections": True,
"order_by_type": False,
"case_sensitive": False,
"reverse_relative": True,
"sort_relative_in_force_sorted_sections": True,
"sections": ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "APPLICATION", "LOCALFOLDER"],
"no_lines_before": "LOCALFOLDER",
}

profiles: Dict[str, Dict[str, Any]] = {
"black": black,
Expand All @@ -72,4 +82,5 @@
"attrs": attrs,
"hug": hug,
"wemake": wemake,
"appnexus": appnexus,
}

0 comments on commit 89e1e2c

Please sign in to comment.