Fix bug where you weren't able to use both the -q and -j flags at the same time #227

Merged
Vylpes merged 17 commits from feature/181-q-json-flags into develop 2024-12-07 22:21:43 +00:00
Showing only changes of commit 3e4c3d502a - Show all commits

View file

@ -20,8 +20,7 @@ export default class OutputHelper {
return this.GetFriendlyObjectText(outputObject);
}
/* eslint-disable @typescript-eslint/no-explicit-any */
private static GetFriendlyObjectText(object: any): string {
private static GetFriendlyObjectText<T>(object: T): string {
const output: string[] = [];
for (const key in object) {
@ -30,5 +29,4 @@ export default class OutputHelper {
return output.join("\n");
}
/* eslint-enable @typescript-eslint/no-explicit-any */
}