Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanpscott committed Oct 29, 2024
1 parent 4fd8424 commit efb1b95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion convert/convertSQLite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ export class ConvertSQLite extends Task {
files: []
};
}
}
}
4 changes: 2 additions & 2 deletions convert/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ const suppliedDataDir = process.argv.find((arg) => arg.includes('--data-dir'));
const dataDir = suppliedDataDir
? suppliedDataDir.split('=')[1]
: process.argv.includes('--examples')
? 'example_data'
: 'data';
? 'example_data'
: 'data';

const watchTimeoutArg = process.argv.find((arg) => arg.includes('--watch-timeout'));
const watchTimeout = watchTimeoutArg ? parseInt(watchTimeoutArg.split('=')[1]) : 100;
Expand Down

0 comments on commit efb1b95

Please sign in to comment.