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
What if there were two options for specifying bans like:
banned-imports = ["application"] # application and any of it's submodules can not be imported by anything outside of applicationbanned-imports-riced = '''{ "(?!application$|application\.).*": ["application(\\..*)?"]}
The text was updated successfully, but these errors were encountered:
Often times there is a strong use case for: I have utility functions, and I have application code.
Such that the only rule I would like to declare is: Nothing can import application code, except for the application code itself.
This is simpler and more common that the current ruleset is designed for.
Currently to specify this most simple of rules would be like:
What if there were two options for specifying bans like:
The text was updated successfully, but these errors were encountered: