From 43ddc4d752124cb6e23e1811c1c4575619b29153 Mon Sep 17 00:00:00 2001 From: Riceball LEE Date: Mon, 18 Sep 2017 11:22:51 +0800 Subject: [PATCH] * [lint] use strict etc --- lib/load-config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/load-config.js b/lib/load-config.js index 19674f3..1610747 100644 --- a/lib/load-config.js +++ b/lib/load-config.js @@ -1,7 +1,9 @@ +'use strict'; + var loadConfig = require('load-config-file'); // loadConfig.register('.json', JSON.parse); -loadConfig.register(['.json', '.js'], function(ctx, opt, file){ +loadConfig.register(['.json', '.js'], function(ctx, opt, file) { return require(file); });