Skip to content
This repository was archived by the owner on Jun 6, 2023. It is now read-only.

Commit 5d6c6f7

Browse files
committed
remove js templating which doesn't pass linting
1 parent dd29ad6 commit 5d6c6f7

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

cli/index.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,16 @@ function methodHints() {
4646
}
4747

4848
if (!givenNamespace && !givenName) {
49-
console.log(`
50-
${chalk.bold(`paperspace`)} <namespace> <command> [...flags]
51-
52-
${chalk.dim('Commands:')}
53-
54-
${methodHints()}
55-
56-
---
57-
${chalk.dim(DEETS_NOTE)}
58-
`);
49+
console.log();
50+
console.log(' ' + chalk.bold('paperspace') + ' <namespace> <command> [...flags]');
51+
console.log();
52+
console.log(' ' + chalk.dim('Commands:'));
53+
console.log();
54+
console.log(' ' + methodHints());
55+
console.log();
56+
console.log(' ---');
57+
console.log(' ' + chalk.dim(DEETS_NOTE));
58+
console.log('');
5959

6060
process.exit();
6161
}

0 commit comments

Comments
 (0)