Skip to content

Commit

Permalink
chore: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
erezrokah committed Dec 23, 2020
1 parent 472e28d commit 4390b5e
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions src/utils/lm/steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,13 @@ const checkGitLFSVersionStep = {
},
}

const checkLFSFiltersStep = (callback) => {
return {
title: 'Checking Git LFS filters',
task: async (ctx, task) => {
const installed = await checkLFSFilters()
return callback(ctx, task, installed)
},
}
}
const checkLFSFiltersStep = (callback) => ({
title: 'Checking Git LFS filters',
task: async (ctx, task) => {
const installed = await checkLFSFilters()
return callback(ctx, task, installed)
},
})

const checkHelperVersionStep = {
title: `Checking Netlify's Git Credentials version`,
Expand Down

0 comments on commit 4390b5e

Please sign in to comment.