We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--resolve-all-configs
Create pyproject.toml:
pyproject.toml
[tool.isort] extend_skip=['a.py']
Create an empty a.py.
a.py
Now compare:
$ isort -v a.py _ _ (_) ___ ___ _ __| |_ | |/ _/ / _ \/ '__ _/ | |\__ \/\_\/| | | |_ |_|\___/\___/\_/ \_/ isort your imports, so you don't have to. VERSION 5.13.2 $ isort -v --resolve-all-configs a.py _ _ (_) ___ ___ _ __| |_ | |/ _/ / _ \/ '__ _/ | |\__ \/\_\/| | | |_ |_|\___/\___/\_/ \_/ isort your imports, so you don't have to. VERSION 5.13.2 ./pyproject.toml used for file a.py
--resolve-all-configs shouldn't have an effect on which files are ignored, so one of these commands is doing the wrong thing.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create
pyproject.toml
:Create an empty
a.py
.Now compare:
--resolve-all-configs
shouldn't have an effect on which files are ignored, so one of these commands is doing the wrong thing.The text was updated successfully, but these errors were encountered: