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 c37b011 commit 978aec0Copy full SHA for 978aec0
commitizen/cz/base.py
@@ -1,7 +1,7 @@
1
from typing import Optional, List, Tuple
2
from abc import ABCMeta, abstractmethod
3
4
-from prompt_toolkit.styles import Style
+from prompt_toolkit.styles import merge_styles, Style
5
6
7
class BaseCommitizen(metaclass=ABCMeta):
@@ -35,7 +35,7 @@ def message(self, answers: dict) -> str:
35
36
@property
37
def style(self):
38
- return Style(self.config["style"])
+ return merge_styles(BaseCommitizen.DEFAULT_STYLE_CONFIG, Style(self.config["style"]))
39
40
def example(self) -> str:
41
"""Example of the commit message."""
0 commit comments