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 36c5674 commit 6e2ed75Copy full SHA for 6e2ed75
commitizen/config.py
@@ -61,6 +61,10 @@ def read_raw_parser_conf(data: str) -> dict:
61
"commitizen/__version__.py",
62
"pyproject.toml"
63
] # this tab at the end is important
64
+ style = [
65
+ ["pointer", "reverse"],
66
+ ["question", "underline"]
67
+ ] # this tab at the end is important
68
```
69
"""
70
config = configparser.ConfigParser(allow_no_value=True)
@@ -71,6 +75,10 @@ def read_raw_parser_conf(data: str) -> dict:
71
75
files = _data["files"]
72
76
_f = json.loads(files)
73
77
_data.update({"files": _f})
78
+ if "style" in _data:
79
+ style = _data["style"]
80
+ _s = json.loads(style)
81
+ _data.update({"style": _s})
74
82
83
return _data
84
0 commit comments