Commit f843285d authored by Phil Hughes's avatar Phil Hughes

Fixed eslint failure in IDE spec helpers

parent 8bf15ef4
......@@ -27,7 +27,7 @@ export const file = (name = 'name', id = name, type = '', parent = null) =>
lastCommit: {},
});
export const createEntriesFromPaths = (paths) =>
export const createEntriesFromPaths = paths =>
paths
.map(path => ({
name: pathUtils.basename(path),
......@@ -35,7 +35,7 @@ export const createEntriesFromPaths = (paths) =>
ext: pathUtils.extname(path),
}))
.reduce((entries, path, idx) => {
const name = path.name;
const { name } = path;
const parent = path.dir ? entries[path.dir] : null;
const type = path.ext ? 'blob' : 'tree';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment