style(sandbox): fix linting errors
- Remove unused normalizeOptions function - Fix line length violations (format long lines) - Fix import order (alphabetical) - Format function signatures for readability All lint checks now passing.
This commit is contained in:
committed by
Peter Steinberger
parent
b0c97d6178
commit
7f02b62bba
@@ -48,9 +48,13 @@ export function displayContainers(
|
||||
renderItem: (container, rt) => {
|
||||
rt.log(` ${container.containerName}`);
|
||||
rt.log(` Status: ${formatStatus(container.running)}`);
|
||||
rt.log(` Image: ${container.image} ${formatImageMatch(container.imageMatch)}`);
|
||||
rt.log(
|
||||
` Image: ${container.image} ${formatImageMatch(container.imageMatch)}`,
|
||||
);
|
||||
rt.log(` Age: ${formatAge(Date.now() - container.createdAtMs)}`);
|
||||
rt.log(` Idle: ${formatAge(Date.now() - container.lastUsedAtMs)}`);
|
||||
rt.log(
|
||||
` Idle: ${formatAge(Date.now() - container.lastUsedAtMs)}`,
|
||||
);
|
||||
rt.log(` Session: ${container.sessionKey}`);
|
||||
rt.log("");
|
||||
},
|
||||
@@ -71,7 +75,9 @@ export function displayBrowsers(
|
||||
renderItem: (browser, rt) => {
|
||||
rt.log(` ${browser.containerName}`);
|
||||
rt.log(` Status: ${formatStatus(browser.running)}`);
|
||||
rt.log(` Image: ${browser.image} ${formatImageMatch(browser.imageMatch)}`);
|
||||
rt.log(
|
||||
` Image: ${browser.image} ${formatImageMatch(browser.imageMatch)}`,
|
||||
);
|
||||
rt.log(` CDP: ${browser.cdpPort}`);
|
||||
if (browser.noVncPort) {
|
||||
rt.log(` noVNC: ${browser.noVncPort}`);
|
||||
|
||||
Reference in New Issue
Block a user