diff mbox series

checkpatch: Check .m, .build, .hx, .json and .plist

Message ID 20220307033733.6953-1-akihiko.odaki@gmail.com (mailing list archive)
State New, archived
Headers show
Series checkpatch: Check .m, .build, .hx, .json and .plist | expand

Commit Message

Akihiko Odaki March 7, 2022, 3:37 a.m. UTC
Signed-off-by: Akihiko Odaki <akihiko.odaki@gmail.com>
---
 scripts/checkpatch.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index ddd8148d87e..bd666129d3f 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -12,7 +12,7 @@  use Term::ANSIColor qw(:constants);
 my $P = $0;
 $P =~ s@.*/@@g;
 
-our $SrcFile    = qr{\.(?:(h|c)(\.inc)?|cpp|s|S|pl|py|sh)$};
+our $SrcFile = qr{\.(?:(h|c|m)(\.inc)?|cpp|s|S|pl|py|sh|build|hx|json|plist)$};
 
 my $V = '0.31';