style: lint

This commit is contained in:
Isaac
2023-02-13 15:07:05 +00:00
parent b8dd1900e9
commit c3d6d70316
5 changed files with 8 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ module.exports = class extends StdinCommand {
const toEval = input.join(' ');
try {
const res = await eval(toEval);
console.log(res);
console.log(res); // eslint-disable-line no-console
return true;
} catch (error) {
this.client.log.error(error);