We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dca5f3c commit 9854f2fCopy full SHA for 9854f2f
src/constants/DefaultPluginConfig.ts
@@ -2,11 +2,5 @@
2
* Default values for plugin config.
3
*/
4
export const DefaultPluginConfig = {
5
- autoConfig: true,
6
- promptColor: {
7
- "info": "blue",
8
- "warning": "yellow",
9
- "error": "red",
10
- "success": "green"
11
- }
+ autoConfig: true
12
}
src/types/PluginConfig.ts
@@ -3,7 +3,4 @@
export type PluginConfig = {
autoConfig?: boolean; // defaults to true, helps user to enable the required events
- promptColor?: {
- [key: string]: string;
- };
0 commit comments