Skip to content

Commit 5e4b8cd

Browse files
domdomeggclaude
andcommitted
Fix linting error: add space after if keyword
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent b87da50 commit 5e4b8cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/start.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export const start = async (customOptions?: Partial<StartOptions>): Promise<void
120120

121121
const commonArgs = ['-jar', jarFilename, '-port', String(options.port)];
122122
const dockerArgs = ['run', '-p', `${options.port}:${options.port}`];
123-
if(options.dockerRemove) {
123+
if (options.dockerRemove) {
124124
dockerArgs.push('-rm');
125125
}
126126
dockerArgs.push(options.dockerImage);

0 commit comments

Comments
 (0)