File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313 - beta
1414 - master
1515 workflow_dispatch :
16- env :
17- MY_GITHUB_TOKEN : ${{ secrets.MY_GITHUB_TOKEN }}
18- zzzz1234 : 1
16+ permissions :
17+ contents : write
1918jobs :
2019
2120
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ let jslint_rgx_digits_octals = (
187187 / ^ [ 0 - 7 _ ] * /
188188) ;
189189let jslint_rgx_directive = (
190- / ^ ( j s l i n t | p r o p e r t y | g l o b a l ) \s + ( . * ) $ /
190+ / ^ ( j s l i n t | p r o p e r t y | g l o b a l ) \s + ? ( \S . * ? ) $ /
191191) ;
192192let jslint_rgx_directive_part = (
193193 / ( [ a - z A - Z $ _ ] [ a - z A - Z 0 - 9 $ _ ] * ) (?: : \s * ( t r u e | f a l s e ) ) ? , ? \s * | $ / g
@@ -9511,10 +9511,10 @@ function jslint_report({
95119511// Google Lighthouse Accessibility - <dl>'s do not contain only properly-ordered
95129512// <dt> and <dd> groups, <script>, <template> or <div> elements.
95139513
9514- "<dl>"
9515- + "<dt>" + htmlEscape ( title ) + "</dt>"
9516- + "<dd>" + list . join ( ", " ) + "</dd>"
9517- + "</dl>"
9514+ "<dl>" +
9515+ "<dt>" + htmlEscape ( title ) + "</dt>" +
9516+ "<dd>" + list . map ( htmlEscape ) . join ( ", " ) + "</dd>" +
9517+ "</dl>"
95189518 )
95199519 : ""
95209520 ) ;
You can’t perform that action at this time.
0 commit comments