Skip to content

Commit 7e22b7c

Browse files
wip
1 parent 171408b commit 7e22b7c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

index.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ module.exports = function(options) {
3333
return config.isListForm ? [] : {};
3434
}
3535

36-
const params = { treePath: [] };
36+
const params = {
37+
treePath: []
38+
};
3739

3840
const results = traverse(config, params);
3941
debug('traversal complete', results);
@@ -176,7 +178,7 @@ function traverse(config, params) {
176178
const newParams = {
177179
...params,
178180
treePath: [...(params.treePath ? params.treePath : []), config.filename]
179-
}
181+
};
180182

181183
if (localConfig.isListForm) {
182184
for (let item of traverse(localConfig, newParams)) {

0 commit comments

Comments
 (0)