Chore: Restrict internal imports from other packages (#30453)

This commit is contained in:
Andrej Ocenas
2021-01-21 09:04:31 +01:00
committed by GitHub
parent 90551eafb0
commit 31192cf7db
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
{
"rules": {
"no-restricted-imports": ["error", { "patterns": ["@grafana/runtime"] }]
"no-restricted-imports": ["error", { "patterns": ["@grafana/runtime", "@grafana/data/*", "@grafana/ui/*", "@grafana/e2e/*"] }]
}
}