mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Use extend_skip to avoid overriding isort's skip default
This preserves isort's default behavior of ignoring virtualenvs with common names like `venv` or `.venv`, which is helpful when running `isort` in a local development environment that uses such a virtualenv.
This commit is contained in:
parent
eab768f950
commit
79c1d6db0f
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ strip-ansi = "*"
|
||||||
|
|
||||||
[tool.isort]
|
[tool.isort]
|
||||||
profile = "black"
|
profile = "black"
|
||||||
skip = [".gitignore"]
|
extend_skip = [".gitignore"]
|
||||||
# This is necessary due to https://github.com/PyCQA/isort/issues/1835
|
# This is necessary due to https://github.com/PyCQA/isort/issues/1835
|
||||||
follow_links = false
|
follow_links = false
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue