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
Is there any way to say "I want to run removestar over all files in my project except the ones in this directory?"
In many of our projects we have a directory where import *'s are quite useful and would be cumbersome to replace with explicit imports, but those are restricted to a specific folder within the project.
For example we might have a directory structure like:
And have removestar run over everything in tests, packagea, packageb, etc, but not exclude_this
Alternatively, is there a pragma or directive one could put in a source file to have it excluded from being modified/examined by removestar? (thinking like the #pylint: disabledirective that Pylint supports )
The text was updated successfully, but these errors were encountered:
Is there any way to say "I want to run removestar over all files in my project except the ones in this directory?"
In many of our projects we have a directory where
import *
's are quite useful and would be cumbersome to replace with explicit imports, but those are restricted to a specific folder within the project.For example we might have a directory structure like:
And I'd like to be able to do something like:
And have removestar run over everything in tests, packagea, packageb, etc, but not exclude_this
Alternatively, is there a pragma or directive one could put in a source file to have it excluded from being modified/examined by removestar? (thinking like the
#pylint: disable
directive that Pylint supports )The text was updated successfully, but these errors were encountered: