sisoe24 / Python-Easy-Print

Void operators found JS-0098
Anti-pattern
Minor
2 occurrences in this check
Expected 'undefined' and instead saw 'void'
71        vscode.commands.registerCommand(
72            "python-easy-print.easyPrintPy2",
73            () => {
74                void utils.initPrintPython2();75            }
76        )
77    );
Expected 'undefined' and instead saw 'void'
62    for (const [action, command] of Object.entries(DOCUMENT_COMMANDS)) {
63        context.subscriptions.push(
64            vscode.commands.registerCommand(command, () => {
65                void doc.executeCommand(action);66            })
67        );
68    }