Skip to content

Commit

Permalink
Merge pull request #15 from genomehubs/feature/fix-isort
Browse files Browse the repository at this point in the history
Feature/fix-isort
  • Loading branch information
rjchallis authored Jul 8, 2024
2 parents fc7a5e5 + e93b6fc commit 5a423b8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"git.ignoreLimitWarning": true,
"editor.formatOnSave": true,
"flake8.args": ["--max-line-length=88", "--extend-ignore=E203,E501,E701"],
"isort.args": ["--profile", "black"],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports.python": "explicit"
Expand Down
7 changes: 7 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ universal=1
[metadata]
description-file=README.md

[isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 88
profile = black

[flake8]
max-line-length = 88
extend-ignore = E203,E501,E701
Expand Down

0 comments on commit 5a423b8

Please sign in to comment.