From 641a2a81d35eab797e6623a40b9a595a070c7fd2 Mon Sep 17 00:00:00 2001 From: Van Nguyen Date: Mon, 15 Feb 2021 11:57:30 +1100 Subject: [PATCH] chore: fixup lint --- lib/configuration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/configuration.js b/lib/configuration.js index 168aac225..5b748318c 100644 --- a/lib/configuration.js +++ b/lib/configuration.js @@ -15,7 +15,7 @@ module.exports.getConfiguration = function () { if (!configPath) { return config } - const ext = path.extname(configPath); + const ext = path.extname(configPath) if (ext === '.js' || ext === '.cjs') { const jsConfiguration = require(configPath) if (typeof jsConfiguration === 'function') {