diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2021-03-10 11:50:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-10 11:50:52 +0100 |
commit | e31cf579a0f3e64250af2e7269eef2e6c6e3d8fb (patch) | |
tree | bbf0de5f2d1bcbfec6b0f44f9dc95cd1c1e6a677 /Gruntfile.js | |
parent | 9ea690a0d9e645280dbb448579d2ac3babb510ed (diff) | |
download | jquery-ui-e31cf579a0f3e64250af2e7269eef2e6c6e3d8fb.tar.gz jquery-ui-e31cf579a0f3e64250af2e7269eef2e6c6e3d8fb.zip |
Build: Fix the new htmllint error regex
Some bad pages are being detected as Catalan randomly which makes the build
fail. This is reproducible both locally & on Travis. PR gh-1949 added a new
regex to account for this error but it didn't escape parens properly so it's
not matching the problematic error message.
Ref gh-1949
Closes gh-1950
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index f0aedf96a..ad5ce1961 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -215,7 +215,7 @@ grunt.initConfig( { /Element “object” is missing one or more of the following/, /The “codebase” attribute on the “object” element is obsolete/, /Consider adding a “lang” attribute to the “html” start tag/, - /This document appears to be written in .*. Consider adding “lang=".*"” (or variant) to the “html” start tag/ + /This document appears to be written in .*. Consider adding “lang=".*"” \(or variant\) to the “html” start tag/ ] }, src: htmllintBad |