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
Example
---------
package: core
from statements that should be detected:
* `from core import xx`
* `from core.subpackage import yy`
from statements that should NOT be detected:
* `from coreasdf import yy`
The currently generated rules also detect imports that are only a text match.
Example
package: core
from statements that should be detected:
from core import xx
from core.subpackage import yy
from statements that should NOT be detected:
from coreasdf import yy
The text was updated successfully, but these errors were encountered: