* [lint] exceeds the maximum line length of 80

This commit is contained in:
Riceball LEE 2017-09-18 11:23:38 +08:00
parent 43ddc4d752
commit 98c93ac1a4
1 changed files with 2 additions and 1 deletions

View File

@ -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);