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
We run autoflake with -c -r, so it checks every Python file in the repo in check mode. Our CI output looks like this:
autoflake
-c -r
check
+ autoflake -cr --remove-all-unused-imports --remove-unused-variables -- | No issues detected! | No issues detected! | No issues detected! <snip hundreds of lines> ...
Our ideal behavior in check mode would be:
Is there a way to accomplish this? (From looking at the code, seems that the print happens unconditionally in check mode).
If not, do you have suggestions about the user-friendliest way to add a way to accomplish it? I would be happy to make the patch.
The text was updated successfully, but these errors were encountered:
Noticed only now, created #90 for exactly this purpose.
Sorry, something went wrong.
No branches or pull requests
We run
autoflake
with-c -r
, so it checks every Python file in the repo incheck
mode. Our CI output looks like this:Our ideal behavior in check mode would be:
Is there a way to accomplish this? (From looking at the code, seems that the print happens unconditionally in check mode).
If not, do you have suggestions about the user-friendliest way to add a way to accomplish it? I would be happy to make the patch.
The text was updated successfully, but these errors were encountered: