grafana/packages/grafana-toolkit/.eslintrc

15 lines
283 B
Plaintext
Raw Normal View History

{
"rules": {
"no-restricted-imports": ["error", { "patterns": ["@grafana/runtime"] }]
},
"overrides": [
{
"files": ["./**/*.{ts,tsx}"],
"rules": {
"react-hooks/rules-of-hooks": "off",
"react-hooks/exhaustive-deps": "off"
}
}
]
}