Commit f1136dc2 authored by Michal Čihař's avatar Michal Čihař

Ignore begin/end newlines for Android

These are non significant whitespaces there as well.
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent fb4edda7
...@@ -820,7 +820,12 @@ class AndroidFormat(FileFormat): ...@@ -820,7 +820,12 @@ class AndroidFormat(FileFormat):
loader = ('aresource', 'AndroidResourceFile') loader = ('aresource', 'AndroidResourceFile')
monolingual = True monolingual = True
# Whitespace is ignored in this format # Whitespace is ignored in this format
check_flags = ('ignore-begin-space', 'ignore-end-space') check_flags = (
'ignore-begin-space',
'ignore-end-space',
'ignore-begin-newline',
'ignore-end-newline',
)
@classmethod @classmethod
def supports_new_language(cls): def supports_new_language(cls):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment