1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

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"),
],
}