Skip to content

Commit

Permalink
Standardjs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Cruikshanks committed Nov 6, 2022
1 parent ec43eaa commit 30a29d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/services/plugins/hapi_pino_ignore_request.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class HapiPinoIgnoreRequestService {
*
* @returns {boolean} true if the request should be ignored, else false
*/
static go(_options, request) {
const staticPaths = ['/', '/status']
static go (_options, request) {
const staticPaths = ['/', '/status']

// If request is a known path ignore it
if (staticPaths.includes(request.path)) {
Expand Down

0 comments on commit 30a29d8

Please sign in to comment.