fix: correct biome suppressions and formatting for #517
This commit is contained in:
@@ -15,7 +15,13 @@ import {
|
||||
} from "./commands/cas.js";
|
||||
import { cmdLogClean, cmdLogList, cmdLogShow } from "./commands/log.js";
|
||||
import { cmdSetup, cmdSetupInteractive } from "./commands/setup.js";
|
||||
import { cmdSkillArchitecture, cmdSkillCli, cmdSkillList, cmdSkillModerator, cmdSkillYaml } from "./commands/skill.js";
|
||||
import {
|
||||
cmdSkillArchitecture,
|
||||
cmdSkillCli,
|
||||
cmdSkillList,
|
||||
cmdSkillModerator,
|
||||
cmdSkillYaml,
|
||||
} from "./commands/skill.js";
|
||||
import { cmdStepFork, cmdStepList, cmdStepRead, cmdStepShow } from "./commands/step.js";
|
||||
import {
|
||||
cmdThreadCancel,
|
||||
@@ -479,7 +485,6 @@ skill
|
||||
.command("cli")
|
||||
.description("Print a markdown reference of all uwf commands")
|
||||
.action(() => {
|
||||
// biome-ignore lint/nursery/noConsole: CLI user-facing output
|
||||
console.log(cmdSkillCli());
|
||||
});
|
||||
|
||||
@@ -487,7 +492,6 @@ skill
|
||||
.command("architecture")
|
||||
.description("Print the architecture reference")
|
||||
.action(() => {
|
||||
// biome-ignore lint/nursery/noConsole: CLI user-facing output
|
||||
console.log(cmdSkillArchitecture());
|
||||
});
|
||||
|
||||
@@ -495,7 +499,6 @@ skill
|
||||
.command("yaml")
|
||||
.description("Print the workflow YAML schema reference")
|
||||
.action(() => {
|
||||
// biome-ignore lint/nursery/noConsole: CLI user-facing output
|
||||
console.log(cmdSkillYaml());
|
||||
});
|
||||
|
||||
@@ -503,7 +506,6 @@ skill
|
||||
.command("moderator")
|
||||
.description("Print the moderator reference")
|
||||
.action(() => {
|
||||
// biome-ignore lint/nursery/noConsole: CLI user-facing output
|
||||
console.log(cmdSkillModerator());
|
||||
});
|
||||
|
||||
@@ -511,7 +513,6 @@ skill
|
||||
.command("list")
|
||||
.description("List all available skill names")
|
||||
.action(() => {
|
||||
// biome-ignore lint/nursery/noConsole: CLI user-facing output
|
||||
console.log(cmdSkillList().join("\n"));
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user