grafana/packages/grafana-flamegraph/.eslintrc

20 lines
354 B
Plaintext
Raw Normal View History

2023-09-12 05:28:48 -05:00
{
"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"
}
}
]
}