Skip to content

Commit

Permalink
style(top-level): fix prettier formatting on index.ts (#698)
Browse files Browse the repository at this point in the history
should pass the test
  • Loading branch information
bendtherules authored and marionebl committed Jun 17, 2019
1 parent 5f4c746 commit 417bfb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion @commitlint/top-level/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default toplevel;
* Find the next git root
*/
async function toplevel(cwd: string) {
const found = await up('.git', { cwd, type: 'directory' });
const found = await up('.git', {cwd, type: 'directory'});

if (typeof found !== 'string') {
return found;
Expand Down

0 comments on commit 417bfb6

Please sign in to comment.