mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
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:
parent
793fdd484d
commit
af115c7fda
2 changed files with 3 additions and 14 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue