Fixed eslint failure in IDE spec helpers

This commit is contained in:
Phil Hughes 2018-06-26 17:18:56 +01:00
parent 8bf15ef4af
commit f843285d49
No known key found for this signature in database
GPG Key ID: 32245528C52E0F9F
1 changed files with 2 additions and 2 deletions

View File

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