sisoe24 / Python-Easy-Print

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
2 months ago2 years old
Documentation comment not found for method definition cleanText
203        return /[{([]/.test(this.lineText);
204    }
205
206    private cleanText(text: string): string {207        return text
208            .replace(/'/g, '"')
209            .replace(/\r?\n/g, "")
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