18
18
import sys
19
19
from typing import List
20
20
21
+ from . import console
21
22
from .__version__ import __version__
23
+ from .config import config
22
24
from .exceptions import CommitlintException
23
25
from .git_helpers import get_commit_message_of_hash , get_commit_messages_of_hash_range
24
26
from .linter import lint_commit_message
@@ -48,10 +50,10 @@ def get_args() -> argparse.Namespace:
48
50
# for commit message check
49
51
group = parser .add_mutually_exclusive_group (required = True )
50
52
group .add_argument (
51
- "commit_message" , nargs = "?" , type = str , help = "The commit message to be checked. "
53
+ "commit_message" , nargs = "?" , type = str , help = "The commit message to be checked"
52
54
)
53
55
group .add_argument (
54
- "--file" , type = str , help = "Path to a file containing the commit message. "
56
+ "--file" , type = str , help = "Path to a file containing the commit message"
55
57
)
56
58
group .add_argument ("--hash" , type = str , help = "Commit hash" )
57
59
group .add_argument ("--from-hash" , type = str , help = "From commit hash" )
@@ -64,14 +66,26 @@ def get_args() -> argparse.Namespace:
64
66
action = "store_true" ,
65
67
help = "Skip the detailed error message check" ,
66
68
)
69
+
70
+ output_group = parser .add_mutually_exclusive_group (required = False )
67
71
# --quiet option is optional
68
- parser .add_argument (
72
+ output_group .add_argument (
69
73
"-q" ,
70
74
"--quiet" ,
71
75
action = "store_true" ,
72
76
help = "Ignore stdout and stderr" ,
73
77
default = False ,
74
78
)
79
+
80
+ # --verbose option is optional
81
+ output_group .add_argument (
82
+ "-v" ,
83
+ "--verbose" ,
84
+ action = "store_true" ,
85
+ help = "Verbose output" ,
86
+ default = False ,
87
+ )
88
+
75
89
# parsing args
76
90
args = parser .parse_args ()
77
91
@@ -95,15 +109,15 @@ def _show_errors(
95
109
error_count = len (errors )
96
110
commit_message = remove_comments (commit_message )
97
111
98
- sys . stderr . write (f"⧗ Input:\n { commit_message } \n \n " )
112
+ console . error (f"⧗ Input:\n { commit_message } \n " )
99
113
100
114
if skip_detail :
101
- sys . stderr . write ( f" { VALIDATION_FAILED } \n " )
115
+ console . error ( VALIDATION_FAILED )
102
116
return
103
117
104
- sys . stderr . write (f"✖ Found { error_count } error(s).\n " )
118
+ console . error (f"✖ Found { error_count } error(s)." )
105
119
for error in errors :
106
- sys . stderr . write (f"- { error } \n " )
120
+ console . error (f"- { error } " )
107
121
108
122
109
123
def _get_commit_message_from_file (filepath : str ) -> str :
@@ -121,50 +135,42 @@ def _get_commit_message_from_file(filepath: str) -> str:
121
135
IOError: If there is an issue reading the file.
122
136
"""
123
137
abs_filepath = os .path .abspath (filepath )
138
+ console .verbose (f"reading commit message from file { abs_filepath } " )
124
139
with open (abs_filepath , encoding = "utf-8" ) as commit_message_file :
125
140
commit_message = commit_message_file .read ().strip ()
126
141
return commit_message
127
142
128
143
129
- def _handle_commit_message (
130
- commit_message : str , skip_detail : bool , quiet : bool = False
131
- ) -> None :
144
+ def _handle_commit_message (commit_message : str , skip_detail : bool ) -> None :
132
145
"""
133
146
Handles a single commit message, checks its validity, and prints the result.
134
147
135
148
Args:
136
149
commit_message (str): The commit message to be handled.
137
150
skip_detail (bool): Whether to skip the detailed error linting.
138
- quiet (bool): Whether to ignore stout and stderr
139
151
140
152
Raises:
141
153
SystemExit: If the commit message is invalid.
142
154
"""
143
155
success , errors = lint_commit_message (commit_message , skip_detail = skip_detail )
144
156
145
- if success and quiet :
146
- return
147
-
148
157
if success :
149
- sys . stdout . write ( f" { VALIDATION_SUCCESSFUL } \n " )
158
+ console . success ( VALIDATION_SUCCESSFUL )
150
159
return
151
160
152
- if not quiet :
153
- _show_errors (commit_message , errors , skip_detail = skip_detail )
154
-
161
+ _show_errors (commit_message , errors , skip_detail = skip_detail )
155
162
sys .exit (1 )
156
163
157
164
158
165
def _handle_multiple_commit_messages (
159
- commit_messages : List [str ], skip_detail : bool , quiet : bool = False
166
+ commit_messages : List [str ], skip_detail : bool
160
167
) -> None :
161
168
"""
162
169
Handles multiple commit messages, checks their validity, and prints the result.
163
170
164
171
Args:
165
172
commit_messages (List[str]): List of commit messages to be handled.
166
173
skip_detail (bool): Whether to skip the detailed error linting.
167
- quiet (bool): Whether to show the error and messages in console
168
174
Raises:
169
175
SystemExit: If any of the commit messages is invalid.
170
176
"""
@@ -173,18 +179,17 @@ def _handle_multiple_commit_messages(
173
179
for commit_message in commit_messages :
174
180
success , errors = lint_commit_message (commit_message , skip_detail = skip_detail )
175
181
if success :
182
+ console .verbose ("lint success" )
176
183
continue
177
184
178
185
has_error = True
179
- if not quiet :
180
- _show_errors (commit_message , errors , skip_detail = skip_detail )
181
- sys .stderr .write ("\n " )
186
+ _show_errors (commit_message , errors , skip_detail = skip_detail )
187
+ console .error ("" )
182
188
183
189
if has_error :
184
190
sys .exit (1 )
185
191
186
- if not quiet :
187
- sys .stdout .write (f"{ VALIDATION_SUCCESSFUL } \n " )
192
+ console .success (VALIDATION_SUCCESSFUL )
188
193
189
194
190
195
def main () -> None :
@@ -193,31 +198,34 @@ def main() -> None:
193
198
"""
194
199
args = get_args ()
195
200
201
+ # setting config based on args
202
+ config .quiet = args .quiet
203
+ config .verbose = args .verbose
204
+
205
+ console .verbose ("starting commitlint" )
196
206
try :
197
207
if args .file :
208
+ console .verbose ("checking commit from file" )
198
209
commit_message = _get_commit_message_from_file (args .file )
199
- _handle_commit_message (
200
- commit_message , skip_detail = args .skip_detail , quiet = args .quiet
201
- )
210
+ _handle_commit_message (commit_message , skip_detail = args .skip_detail )
202
211
elif args .hash :
212
+ console .verbose ("checking commit from hash" )
203
213
commit_message = get_commit_message_of_hash (args .hash )
204
- _handle_commit_message (
205
- commit_message , skip_detail = args .skip_detail , quiet = args .quiet
206
- )
214
+ _handle_commit_message (commit_message , skip_detail = args .skip_detail )
207
215
elif args .from_hash :
216
+ console .verbose ("checking commit from hash range" )
208
217
commit_messages = get_commit_messages_of_hash_range (
209
218
args .from_hash , args .to_hash
210
219
)
211
220
_handle_multiple_commit_messages (
212
- commit_messages , skip_detail = args .skip_detail , quiet = args . quiet
221
+ commit_messages , skip_detail = args .skip_detail
213
222
)
214
223
else :
224
+ console .verbose ("checking commit message" )
215
225
commit_message = args .commit_message .strip ()
216
- _handle_commit_message (
217
- commit_message , skip_detail = args .skip_detail , quiet = args .quiet
218
- )
226
+ _handle_commit_message (commit_message , skip_detail = args .skip_detail )
219
227
except CommitlintException as ex :
220
- sys . stderr . write (f"{ ex } \n " )
228
+ console . error (f"{ ex } " )
221
229
sys .exit (1 )
222
230
223
231
0 commit comments