Skip to content

Commit 9854f2f

Browse files
committed
chore: Remove unused property in config
1 parent dca5f3c commit 9854f2f

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

src/constants/DefaultPluginConfig.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,5 @@
22
* Default values for plugin config.
33
*/
44
export const DefaultPluginConfig = {
5-
autoConfig: true,
6-
promptColor: {
7-
"info": "blue",
8-
"warning": "yellow",
9-
"error": "red",
10-
"success": "green"
11-
}
5+
autoConfig: true
126
}

src/types/PluginConfig.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,4 @@
33
*/
44
export type PluginConfig = {
55
autoConfig?: boolean; // defaults to true, helps user to enable the required events
6-
promptColor?: {
7-
[key: string]: string;
8-
};
96
}

0 commit comments

Comments
 (0)