You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*
|
|
|
|
|
* ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️
|
|
|
|
|
*
|
|
|
|
|
* In order to extend the configuration follow the steps in
|
|
|
|
|
* https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config
|
|
|
|
|
*/
|
|
|
|
|
{
|
|
|
|
|
"extends": ["@grafana/eslint-config"],
|
|
|
|
|
"root": true,
|
|
|
|
|
"rules": {
|
|
|
|
|
"react/prop-types": "off"
|
|
|
|
|
},
|
|
|
|
|
"overrides": [
|
|
|
|
|
{
|
|
|
|
|
"plugins": ["deprecation"],
|
|
|
|
|
"files": ["src/**/*.{ts,tsx}"],
|
|
|
|
|
"rules": {
|
|
|
|
|
"deprecation/deprecation": "warn"
|
|
|
|
|
},
|
|
|
|
|
"parserOptions": {
|
|
|
|
|
"project": "./tsconfig.json"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|