3
0
mirror of https://github.com/grafana/grafana.git synced 2025-02-25 18:55:37 -06:00
grafana/packages/grafana-toolkit/.eslintrc
Zoltán Bedi b98c85d81c
Chore: eslint plugin react hooks fix in jeager ()
* Use eslintignore instead of gitignore

* Fix jaeger errors
2020-09-24 14:41:57 +02:00

15 lines
283 B
Plaintext

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