isort: remove settings covered by profile (#3281)

* chore: remove isort settings covered by profile

https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#custom-configuration

* chore: add myself to CONTRIBUTORS file

* chore: use black profile for isort

* chore(isort): fix configuration to skip directories

When overwriting `skip`, `.git` and others would no longer be skipped.

`extend_skip` is the correct option.

* chore(isort): skip directory `qt/bundle`
This commit is contained in:
David Culley 2024-07-20 13:13:12 +02:00 committed by GitHub
parent 793fdd484d
commit af115c7fda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 14 deletions

View file

@ -1,10 +1,4 @@
[settings]
ensure_newline_before_comments=true
force_grid_wrap=0
include_trailing_comma=True
known_first_party=anki,aqt,tests
line_length=88
multi_line_output=3
profile=black
skip=
use_parentheses=True
extend_skip=qt/bundle

View file

@ -1,9 +1,4 @@
[settings]
ensure_newline_before_comments=true
force_grid_wrap=0
include_trailing_comma=True
profile=black
known_first_party=anki,aqt
line_length=88
multi_line_output=3
skip=aqt/forms,hooks_gen.py
use_parentheses=True
extend_skip=aqt/forms,hooks_gen.py