sisoe24 / Python-Easy-Print

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
3 months ago2 years old
Documentation comment not found for function declaration executeCommand
 8import { getConfig } from "./config";
 9import { config } from "process";
10
11export async function executeCommand(12    statement: string
13): Promise<string | void> {
14    const editor = vscode.window.activeTextEditor;
Documentation comment not found for method definition convert
187        return s;
188    }
189
190    convert(): string {191        if (this.statement.includes("{logger}")) {
192            return this.convertLog();
193        }
Documentation comment not found for method definition convertPrint
162        return s;
163    }
164
165    private convertPrint(): string {166        let placeholders = "";
167
168        if (this.statement === "{@}") {
Documentation comment not found for method definition convertLog
150        return placeholders;
151    }
152
153    private convertLog(): string {154        let s = this.statement.replace("{logger}", this.data.getLogger());
155
156        if (this.data.config.get("logging.useRepr")) {
Documentation comment not found for method definition getConfigPlaceholders
 58        ) as string;
 59    }
 60
 61    getConfigPlaceholders(): string { 62        return this.config.get("prints.addCustomMessage") as string;
 63    }
 64