We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 171408b commit 7e22b7cCopy full SHA for 7e22b7c
index.js
@@ -33,7 +33,9 @@ module.exports = function(options) {
33
return config.isListForm ? [] : {};
34
}
35
36
- const params = { treePath: [] };
+ const params = {
37
+ treePath: []
38
+ };
39
40
const results = traverse(config, params);
41
debug('traversal complete', results);
@@ -176,7 +178,7 @@ function traverse(config, params) {
176
178
const newParams = {
177
179
...params,
180
treePath: [...(params.treePath ? params.treePath : []), config.filename]
- }
181
182
183
if (localConfig.isListForm) {
184
for (let item of traverse(localConfig, newParams)) {
0 commit comments