Skip to content

Commit ce6b2b4

Browse files
committed
Replace tabs globally within the line
1 parent 89d259e commit ce6b2b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/cpplint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@
550550
"Remove space before ( in switch (": "s/switch (/switch(/",
551551
"Should have a space between // and comment": 's/\/\//\/\/ /',
552552
"Missing space before {": r's/\([^ ]\){/\1 {/',
553-
"Tab found, replace by spaces": r's/\t/ /',
553+
"Tab found, replace by spaces": r's/\t/ /g',
554554
"Line ends in whitespace. Consider deleting these extra spaces.": r's/\s*$//',
555555
"You don't need a ; after a }": r's/};/}/',
556556
"Missing space after ,": r's/,\([^ ]\)/, \1/',

0 commit comments

Comments
 (0)