From 0332ea42848549ad0d39d8f068aa2df1705d96a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20F=C3=A4cke?= Date: Wed, 21 Aug 2019 11:50:12 +0200 Subject: [PATCH] Update standard (#50) * chore(package): update standard to version 14.0.0 * fix linting error for standard@14 --- index.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 3f4833c3..2fd44bdf 100644 --- a/index.js +++ b/index.js @@ -125,7 +125,7 @@ module.exports = function (fastify, opts, next) { pluginOptions.prefix = prefix + plugin.autoPrefix } - if (plugin.prefixOverride !== void 0) { + if (plugin.prefixOverride !== undefined) { pluginOptions.prefix = plugin.prefixOverride } diff --git a/package.json b/package.json index ba5d5aa1..313a0dc3 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "fastify-url-data": "^2.3.0", "pre-commit": "^1.2.2", "snazzy": "^8.0.0", - "standard": "^13.0.2", + "standard": "^14.0.0", "tap": "^12.6.5", "typescript": "^3.5.3" },