Skip to content

Commit 5b01424

Browse files
committed
chore: linting
1 parent 3f06ec8 commit 5b01424

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib/shared-args.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ export function getSharedArgs(options: StillOptions | StreamOptions): string[] {
5656
/**
5757
* Brightness (0 to 100; default 50)
5858
*/
59-
...((options.brightness || options.brightness === 0) ? ['--brightness', options.brightness.toString()] : []),
59+
...(options.brightness || options.brightness === 0
60+
? ['--brightness', options.brightness.toString()]
61+
: []),
6062

6163
/**
6264
* Saturation (-100 to 100; default 0)

0 commit comments

Comments
 (0)