You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The warning about the missing toml package is not restrictive enough in my opinion. At the moment, it is issued every time a pyproject.toml file is detected even if there is no specific configuration in it for isort. I don't use the isort package but I use pylint and this behavior adds a lot of noise to the output.
Would it be possible to improve this by first checking if the toml file contains an uncommented line [tool.isort] to not issue the warning if one does not want to specify some configuration in this file?
The warning about the missing toml package is not restrictive enough in my opinion. At the moment, it is issued every time a
pyproject.toml
file is detected even if there is no specific configuration in it for isort. I don't use the isort package but I use pylint and this behavior adds a lot of noise to the output.Would it be possible to improve this by first checking if the toml file contains an uncommented line
[tool.isort]
to not issue the warning if one does not want to specify some configuration in this file?https://github.com/timothycrosley/isort/blob/f76f312abc804fc6bbd2dddf76a11581dda4cb32/isort/settings.py#L342-L354
The text was updated successfully, but these errors were encountered: