On 10/15/25 10:05 PM, Ihar Hrachyshka wrote: > Some of us may have too long names or email addresses. > > Signed-off-by: Ihar Hrachyshka <[email protected]> > --- > > v2: update commit message to not suggest multiple addresses can be put > in the same line. > > ---
Hi Ihar, Thanks for v2! > utilities/checkpatch.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/utilities/checkpatch.py b/utilities/checkpatch.py > index 58bdf90b9..c19e34442 100755 > --- a/utilities/checkpatch.py > +++ b/utilities/checkpatch.py > @@ -218,7 +218,7 @@ skip_committer_signoff_check = False > # > # Python isn't checked as flake8 performs these checks during build. > line_length_blacklist = re.compile( > - r'\.(am|at|etc|in|m4|mk|patch|py|yml)$|^debian/.*$') > + r'\.(am|at|etc|in|m4|mailmap|mk|patch|py|yml)$|^debian/.*$') I was considering changing this to: r'\.(am|at|etc|in|m4|mailmap|mk|patch|py|yml)$|^debian/.*$|^\.mailmap$') But given that the mailmap file path is actually configurable I kept it as in your patch. It's probably good enough as is. Applied to main. Regards, Dumitru > > # Don't enforce a requirement that leading whitespace be all spaces on > # files that include these characters in their name, since these kinds _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
