From 8221f824f3797499c9504e2f2b237a9ead4540da Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 17 Oct 2018 14:07:56 +0200 Subject: checkpatch: complain about Emacs file variables in source code --- contrib/scripts/checkpatch.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/scripts/checkpatch.pl b/contrib/scripts/checkpatch.pl index d6b3c4451a..0769273bcb 100755 --- a/contrib/scripts/checkpatch.pl +++ b/contrib/scripts/checkpatch.pl @@ -132,6 +132,7 @@ complain ("Don't use \"$1 $2\" instead of \"$2 $1\"") if $line =~ /\b(char|short complain ("Don't use \"unsigned int\" but just use \"unsigned\"") if $line =~ /\b(unsigned) +(int)\b/; complain ("Please use LGPL2+ for new files") if $is_patch and $line =~ /under the terms of the GNU General Public License/; complain ("Don't use space inside elvis operator ?:") if $line =~ /\?[\t ]+:/; +complain ("Don't add Emacs editor formatting hints to source files") if $line_no == 1 and $line =~ /-\*-.+-\*-/; new_hunk if $_ eq ''; my ($this_indent) = /^(\s*)/; -- cgit v1.2.1