Make lint check for trailing spaces

This commit is contained in:
Daniel Martí 2014-10-15 14:36:59 +02:00
parent ea62609a80
commit f90ba4747f

View file

@ -89,6 +89,8 @@ regex_warnings = {
"Invalid bulleted list"),
(re.compile(r'^ '),
"Unnecessary leading space"),
(re.compile(r'.* $'),
"Unnecessary trailing space"),
],
}