We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a1334b commit ec40a6aCopy full SHA for ec40a6a
src/main/scripts/ci/check-build-and-verify.sh
@@ -14,11 +14,13 @@ if [ "$RUN_ONLY_INTEGRATION_TESTS" = 'no' ]; then
14
find src -type f -name '*.html' | xargs bootlint >bootlint.log 2>&1 || touch BOOTLINT_FAIL
15
mvn --batch-mode jasmine:test >jasmine.log 2>&1 || touch JASMINE_FAIL
16
# FIXME: add check for src/main/config/nginx/503.*html
17
+ # TODO: remove ignoring of error about alt attribute after resolving #314
18
html5validator \
19
--root src/main/webapp/WEB-INF/views \
20
--ignore-re 'Attribute “(th|sec|togglz|xmlns):[a-z]+” not allowed' \
21
'Attribute “(th|sec|togglz):[a-z]+” is not serializable' \
22
'Attribute with the local name “xmlns:[a-z]+” is not serializable' \
23
+ 'An "img" element must have an "alt" attribute' \
24
--show-warnings \
25
>validator.log 2>&1 || touch HTML_FAIL
26
fi
0 commit comments