style: format

This commit is contained in:
Sérgio Ramos 2017-09-19 11:16:59 +01:00 committed by Sérgio Ramos
parent 097f57374a
commit a6d69918fc
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ const staged = async () => {
const existing = await asyncFilter(
files,
async ({ filename }) => await exists(filename)
({ filename }) => exists(filename)
);
if (!existing.length) {

View File

@ -68,7 +68,7 @@ const runLintAndGitAdd = async (staged, pkgs) => {
const existing = await asyncFilter(
staged,
async ({ filename }) => await exists(filename)
({ filename }) => exists(filename)
);
const checksums = await map(existing, async file => {