From 98c93ac1a45e4c673badae2eac0cec15c44c1eee Mon Sep 17 00:00:00 2001 From: Riceball LEE Date: Mon, 18 Sep 2017 11:23:38 +0800 Subject: [PATCH] * [lint] exceeds the maximum line length of 80 --- lib/plugins/model.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/plugins/model.js b/lib/plugins/model.js index cb6dca1..5826899 100644 --- a/lib/plugins/model.js +++ b/lib/plugins/model.js @@ -194,7 +194,8 @@ function findModelDefinitions(rootDir, sources, scriptExtensions) { files .filter(function(f) { - return f[0] !== '_' && loadConfig.prototype.configurators[path.extname(f)] != null; + return f[0] !== '_' && + loadConfig.prototype.configurators[path.extname(f)] != null; }) .forEach(function(f) { var fullPath = path.resolve(srcDir, f);