Tamas Szabo
Tamas Szabo
:+1: for the `--exclude` alias. Maybe also consider deprecating `skip-glob`?
Hi @Felixoid , Can't you just add your tests to `src_paths`? In your `pyproject.toml`: ```toml [tool.isort] profile = "black" src_paths = ["src", "tests/ci"] ``` Continuing your example :arrow_up: and configuring...
Yes, you should add all directories where your project stores source files to `src_paths`. That's how `isort` will know about your project structure and what it should consider `FIRSTPARTY`. I...
No worries, I'm glad it helped! To be honest, I wasn't active on this project for quite a while, so it would quite an effort and I'm not sure if...
Hi @inboxcda I know that it's been a while, but , as the OP, if you could have any other example when `isort` doesn't behave as you expect it, could...