Skip to content
This repository has been archived by the owner on Jun 20, 2022. It is now read-only.

Commit

Permalink
style: Fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
arielsvg committed Apr 21, 2020
1 parent 9d26fa3 commit c50b128
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascripts/main/fileUtils.ts
Expand Up @@ -21,7 +21,7 @@ export async function writeJSONFile(filepath: string, data: any) {
}

export function writeJSONFileSync(filepath: string, data: any) {
fs.writeFileSync(filepath, JSON.stringify(data, null, 2), 'utf8')
fs.writeFileSync(filepath, JSON.stringify(data, null, 2), 'utf8');
}

export async function ensureDirectoryExists(dirPath: string) {
Expand Down
1 change: 1 addition & 0 deletions test/packageManager.spec.ts
Expand Up @@ -81,6 +81,7 @@ describe('Package manager', function () {
/** Silence the package manager's output. */
// eslint-disable-next-line @typescript-eslint/no-empty-function
console.log = () => {};
// eslint-disable-next-line @typescript-eslint/no-empty-function
console.error = () => {};
await ensureDirectoryExists(contentDir);
});
Expand Down

0 comments on commit c50b128

Please sign in to comment.