diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-03-29 00:29:28 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-05-10 10:53:57 +0200 |
commit | f68d655aff81273d431d5e58bc8af775fc9bd231 (patch) | |
tree | f03cdd7c6363c3850dcc1588c65d08fe7e2b95ea /Gruntfile.js | |
parent | 43ed5c94aa796767d635ede2f3e4750c8710f47e (diff) | |
download | jquery-ui-f68d655aff81273d431d5e58bc8af775fc9bd231.tar.gz jquery-ui-f68d655aff81273d431d5e58bc8af775fc9bd231.zip |
Build: Update dependencies, including QUnit 1 -> 2
Also, fix htmllint lang exclusion patterns.
Ref gh-2157
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 6c29ebe9e..0471be52e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -182,8 +182,10 @@ grunt.initConfig( { good: { options: { ignore: [ - /The text content of element “script” was not in the required format: Expected space, tab, newline, or slash but found “.” instead/ - ] }, + /The text content of element “script” was not in the required format: Expected space, tab, newline, or slash but found “.” instead/, + /This document appears to be written in .*. Consider using “lang=".*"” \(or variant\) instead/ + ] + }, src: [ "{demos,tests}/**/*.html", ...htmllintBad.map( pattern => `!${ pattern }` ) @@ -197,7 +199,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|using) “lang=".*"” \(or variant\)/ ] }, src: htmllintBad |