fix(lint): Fix html-lint error about "lang" attr

This avoids a new error from `html-lint` about the "lang" attr
on `<html>` tags, which isn't applicable to templates.

Change-Type: patch
This commit is contained in:
Jonas Hermsmeier 2018-04-02 14:50:20 +02:00
parent df95ab1217
commit 5e6f7e41e6
No known key found for this signature in database
GPG Key ID: 1B870F801A0CEE9F

View File

@ -45,7 +45,8 @@ angularValidate.validate(
reportpath: null, reportpath: null,
reportCheckstylePath: null, reportCheckstylePath: null,
relaxerror: [ relaxerror: [
'Expected a minus sign or a digit' 'Expected a minus sign or a digit',
'Consider adding a “lang” attribute to the “html” start tag to declare the language of this document.'
] ]
} }
).then((result) => { ).then((result) => {