mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
20 lines
354 B
Plaintext
20 lines
354 B
Plaintext
{
|
|
"rules": {
|
|
"no-restricted-imports": [
|
|
"error",
|
|
{
|
|
"patterns": ["@grafana/runtime", "@grafana/e2e", "@grafana/e2e-selectors/*"]
|
|
}
|
|
]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.{test,story}.{ts,tsx}"],
|
|
"rules": {
|
|
"no-restricted-imports": "off",
|
|
"react/prop-types": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|