File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
src/librustdoc/html/static Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -78,5 +78,11 @@ module.exports = {
7878 "block-scoped-var" : "error" ,
7979 "guard-for-in" : "error" ,
8080 "no-alert" : "error" ,
81+ "no-confusing-arrow" : "error" ,
82+ "no-div-regex" : "error" ,
83+ "no-floating-decimal" : "error" ,
84+ "no-implicit-globals" : "error" ,
85+ "no-implied-eval" : "error" ,
86+ "no-label-var" : "error" ,
8187 }
8288} ;
Original file line number Diff line number Diff line change @@ -882,7 +882,7 @@ function loadCss(cssFileName) {
882882 [ "-" , "Collapse all sections" ] ,
883883 ] . map ( x => "<dt>" +
884884 x [ 0 ] . split ( " " )
885- . map ( ( y , index ) => ( index & 1 ) === 0 ? "<kbd>" + y + "</kbd>" : " " + y + " " )
885+ . map ( ( y , index ) => ( ( index & 1 ) === 0 ? "<kbd>" + y + "</kbd>" : " " + y + " " ) )
886886 . join ( "" ) + "</dt><dd>" + x [ 1 ] + "</dd>" ) . join ( "" ) ;
887887 const div_shortcuts = document . createElement ( "div" ) ;
888888 addClass ( div_shortcuts , "shortcuts" ) ;
You can’t perform that action at this time.
0 commit comments