mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
0cfb967404
* Eslint: allign with latest grafana-eslint-config * fix ts * Fix react/jsx-key * Fix react/no-children-prop * Fix react/jsx-no-target-blank
26 lines
714 B
Plaintext
26 lines
714 B
Plaintext
{
|
|
"extends": ["@grafana/eslint-config"],
|
|
"root": true,
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"packages/grafana-ui/**/*/!(*.story).{ts,tsx}",
|
|
"packages/jaeger-ui-components/**/*.{ts,tsx,js}",
|
|
"public/app/**/*.{ts,tsx}"
|
|
],
|
|
"rules": {
|
|
"react-hooks/rules-of-hooks": "off",
|
|
"react-hooks/exhaustive-deps": "off",
|
|
"react/prop-types": "off",
|
|
"react/no-unescaped-entities": "off",
|
|
"react/display-name": "off",
|
|
"react/no-deprecated": "off",
|
|
"react/no-unknown-property": "off",
|
|
"react/no-children-prop": "off",
|
|
"react/no-find-dom-node": "off",
|
|
"react/no-render-return-value": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|