How can I specify which files to sort using isort using only the config file? I want to be able to isort . and have it only pick up certain target directories. I'm using pyproject.toml and i've tried
[tool.isort]
profile = "black"
src_paths = ["src", "test"]
and
[tool.isort]
profile = "black"
sources = ["src", "test"]
and
[tool.isort]
profile = "black"
directory = ["src", "test"]
to no avail