* 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>
17 lines
395 B
JavaScript
17 lines
395 B
JavaScript
/*
|
|
* ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️
|
|
*
|
|
* In order to extend the configuration follow the steps in .config/README.md
|
|
*/
|
|
|
|
module.exports = {
|
|
endOfLine: 'auto',
|
|
printWidth: 120,
|
|
trailingComma: 'es5',
|
|
semi: true,
|
|
jsxSingleQuote: false,
|
|
singleQuote: true,
|
|
useTabs: false,
|
|
tabWidth: 2,
|
|
};
|