File tree 2 files changed +7
-1
lines changed
src/librustdoc/html/static
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -78,5 +78,11 @@ module.exports = {
78
78
"block-scoped-var" : "error" ,
79
79
"guard-for-in" : "error" ,
80
80
"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" ,
81
87
}
82
88
} ;
Original file line number Diff line number Diff line change @@ -882,7 +882,7 @@ function loadCss(cssFileName) {
882
882
[ "-" , "Collapse all sections" ] ,
883
883
] . map ( x => "<dt>" +
884
884
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 + " " ) )
886
886
. join ( "" ) + "</dt><dd>" + x [ 1 ] + "</dd>" ) . join ( "" ) ;
887
887
const div_shortcuts = document . createElement ( "div" ) ;
888
888
addClass ( div_shortcuts , "shortcuts" ) ;
You can’t perform that action at this time.
0 commit comments