mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 12:44:03 +02:00
checkpatch.pl: adapt to new Assisted-by: format
There is a new format for the 'Assisted-by:' tag. Change checkpatch.pl to just check that it has a value rather than testing for a specific format. Assisted-by: LLM Signed-off-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Message-ID: <20260804-checkpatch-v1-1-27f29c79a46f@kernel.org>
This commit is contained in:
parent
895329c37c
commit
2a8d68338e
|
|
@ -3124,11 +3124,12 @@ sub process {
|
|||
}
|
||||
}
|
||||
|
||||
# Assisted-by uses AGENT_NAME:MODEL_VERSION format, not email
|
||||
# Assisted-by uses a free-form value (e.g. "LLM"), not an
|
||||
# email address, so skip the email format checks below.
|
||||
if ($sign_off =~ /^Assisted-by:/i) {
|
||||
if ($email !~ /^\S+:\S+/) {
|
||||
if ($email =~ /^\s*$/) {
|
||||
WARN("BAD_SIGN_OFF",
|
||||
"Assisted-by expects 'AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]' format\n" . $herecurr);
|
||||
"Assisted-by requires a value\n" . $herecurr);
|
||||
}
|
||||
next;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user