mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
ci/lint: ignore subject length for revert commits
The default revert will always add 9 extra characters which means it could go over the 72 character soft limit if the commit being reverted has a long subject. We won't fuss about this so just shut up the lint in this case.
This commit is contained in:
parent
b4c98cb04c
commit
0652a0b545
@ -95,7 +95,8 @@ def no_merge(body):
|
||||
|
||||
@lint_rule("Subject line should be shorter than 72 characters")
|
||||
def line_too_long(body):
|
||||
return len(body[0]) <= 72
|
||||
revert = re.search(r"^Revert \"(.*)\"", body[0])
|
||||
return True if revert else len(body[0]) <= 72
|
||||
|
||||
@lint_rule("Prefix should not include C file extensions (use `vo_gpu: ...` not `vo_gpu.c: ...`)")
|
||||
def no_file_exts(body):
|
||||
|
Loading…
Reference in New Issue
Block a user