* cleanup * update create plugin config and query help fix * query types file * Update docker-compose.yml Co-authored-by: Zoltán Bedi <zoltan.bedi@gmail.com> * addressed review comments --------- Co-authored-by: Zoltán Bedi <zoltan.bedi@gmail.com>
26 lines
675 B
Plaintext
26 lines
675 B
Plaintext
/*
|
|
* ⚠️⚠️⚠️ 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"
|
|
}
|
|
}
|
|
]
|
|
}
|