From: Joe Perches <joe@perches.com> To: Dwaipayan Ray <dwaipayanray1@gmail.com> Cc: linux-kernel-mentees@lists.linuxfoundation.org, linux-kernel@vger.kernel.org Subject: Re: [Linux-kernel-mentees] [PATCH v2] checkpatch: add new exception to repeated word check Date: Wed, 14 Oct 2020 11:35:25 -0700 Message-ID: <7d8c7d80aa7b0524cca49a6dfe24e878bea6ab12.camel@perches.com> (raw) In-Reply-To: <CABJPP5DrSL7GoZUWc7P02CfLHfTBmfpLxrVOVQ08KH3pPontoA@mail.gmail.com> On Wed, 2020-10-14 at 23:42 +0530, Dwaipayan Ray wrote: > On Wed, Oct 14, 2020 at 11:33 PM Joe Perches <joe@perches.com> wrote: > > On Wed, 2020-10-14 at 22:07 +0530, Dwaipayan Ray wrote: > > > Recently, commit 4f6ad8aa1eac ("checkpatch: move repeated word test") > > > moved the repeated word test to check for more file types. But after > > > this, if checkpatch.pl is run on MAINTAINERS, it generates several > > > new warnings of the type: > > > > Perhaps instead of adding more content checks so that > > word boundaries are not something like \S but also > > not punctuation so that content like > > > > git git:// > > @size size > > > > does not match? > > > > > Hi, > So currently the words are trimmed of non alphabets before the check: > > while ($rawline =~ /\b($word_pattern) (?=($word_pattern))/g) { > my $first = $1; > my $second = $2; > > where, the word_pattern is: > my $word_pattern = '\b[A-Z]?[a-z]{2,}\b'; I'm familiar. > So do you perhaps recommend modifying this word pattern to > include the punctuation as well rather than trimming them off? Not really, perhaps use the capture group position markers @- @+ or $-[1] $+[1] and $-[2] $+[2] with the substr could be used to see what characters are before and after the word matches. > > Thanks, > Dwaipayan. _______________________________________________ Linux-kernel-mentees mailing list Linux-kernel-mentees@lists.linuxfoundation.org https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees
next prev parent reply index Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-10-14 16:37 Dwaipayan Ray 2020-10-14 18:03 ` Joe Perches 2020-10-14 18:12 ` Dwaipayan Ray 2020-10-14 18:35 ` Joe Perches [this message] 2020-10-17 2:56 ` Joe Perches 2020-10-17 4:32 ` Dwaipayan Ray 2020-10-17 4:42 ` Joe Perches 2020-10-17 4:49 ` Dwaipayan Ray
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=7d8c7d80aa7b0524cca49a6dfe24e878bea6ab12.camel@perches.com \ --to=joe@perches.com \ --cc=dwaipayanray1@gmail.com \ --cc=linux-kernel-mentees@lists.linuxfoundation.org \ --cc=linux-kernel@vger.kernel.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Linux Kernel Mentees Archive on lore.kernel.org Archives are clonable: git clone --mirror https://lore.kernel.org/linux-kernel-mentees/0 linux-kernel-mentees/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 linux-kernel-mentees linux-kernel-mentees/ https://lore.kernel.org/linux-kernel-mentees \ linux-kernel-mentees@lists.linuxfoundation.org linux-kernel-mentees@lists.linux-foundation.org public-inbox-index linux-kernel-mentees Example config snippet for mirrors Newsgroup available over NNTP: nntp://nntp.lore.kernel.org/org.linuxfoundation.lists.linux-kernel-mentees AGPL code for this site: git clone https://public-inbox.org/public-inbox.git