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
autoflake without passing path for any config file tries to parse both pyproject.toml and setup.cfg: https://github.com/PyCQA/autoflake/blob/v2.2.1/autoflake.py#L1211
autoflake
pyproject.toml
setup.cfg
But autoflake --config some.file can handle only setup.cfg format: https://github.com/PyCQA/autoflake/blob/v2.2.1/autoflake.py#L1255
autoflake --config some.file
Is it possible to add check for file type by its extension?
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
autoflake
without passing path for any config file tries to parse bothpyproject.toml
andsetup.cfg
:https://github.com/PyCQA/autoflake/blob/v2.2.1/autoflake.py#L1211
But
autoflake --config some.file
can handle onlysetup.cfg
format:https://github.com/PyCQA/autoflake/blob/v2.2.1/autoflake.py#L1255
Is it possible to add check for file type by its extension?
The text was updated successfully, but these errors were encountered: