mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
b98c85d81c
* Use eslintignore instead of gitignore * Fix jaeger errors
15 lines
283 B
Plaintext
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"
|
|
}
|
|
}
|
|
]
|
|
}
|