@@ -43,14 +43,14 @@ const decodeOverlayOptions = (overlayOptions) => {
4343 [ "warnings" , "errors" , "runtimeErrors" ] . forEach ( ( property ) => {
4444 if ( typeof overlayOptions [ property ] === "string" ) {
4545 const overlayFilterFunctionString = decodeURIComponent (
46- overlayOptions [ property ]
46+ overlayOptions [ property ] ,
4747 ) ;
4848
4949 // eslint-disable-next-line no-new-func
5050 const overlayFilterFunction = new Function (
5151 "message" ,
5252 `var callback = ${ overlayFilterFunctionString }
53- return callback(message)`
53+ return callback(message)` ,
5454 ) ;
5555
5656 overlayOptions [ property ] = overlayFilterFunction ;
@@ -134,7 +134,7 @@ if (typeof parsedResourceQuery.reconnect !== "undefined") {
134134function setAllLogLevel ( level ) {
135135 // This is needed because the HMR logger operate separately from dev server logger
136136 webpackHotLog . setLogLevel (
137- level === "verbose" || level === "log" ? "info" : level
137+ level === "verbose" || level === "log" ? "info" : level ,
138138 ) ;
139139 setLogLevel ( level ) ;
140140}
@@ -160,7 +160,7 @@ const overlay =
160160 : {
161161 trustedTypesPolicyName : false ,
162162 catchRuntimeError : options . overlay ,
163- }
163+ } ,
164164 )
165165 : { send : ( ) => { } } ;
166166
@@ -232,7 +232,7 @@ const onSocketMessage = {
232232 log . info (
233233 `${ data . pluginName ? `[${ data . pluginName } ] ` : "" } ${ data . percent } % - ${
234234 data . msg
235- } .`
235+ } .`,
236236 ) ;
237237 }
238238
@@ -263,7 +263,7 @@ const onSocketMessage = {
263263 log . info (
264264 `${
265265 file ? `"${ file } "` : "Content"
266- } from static directory was changed. Reloading...`
266+ } from static directory was changed. Reloading...`,
267267 ) ;
268268
269269 self . location . reload ( ) ;
0 commit comments