From 01cfc00e4e4c1551789e4fc214ecfd5674d52c62 Mon Sep 17 00:00:00 2001 From: mym0404 Date: Mon, 25 Mar 2024 23:14:04 +0900 Subject: [PATCH] chore: suppress lint rule in theme-gen.js --- bin/theme-gen.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/theme-gen.js b/bin/theme-gen.js index 0d0b0f42..3fc0fec8 100755 --- a/bin/theme-gen.js +++ b/bin/theme-gen.js @@ -60,14 +60,17 @@ function addLine(str, added, backward = false) { } function print(...args) { + // eslint-disable-next-line no-console console.log(`\x1B[35m[${_printTag}]`, ...args, '\x1B[0m'); } function printSuccess(...args) { + // eslint-disable-next-line no-console console.log(`\x1B[32m[${_printTag}]`, ...args); } function printError(...args) { + // eslint-disable-next-line no-console console.log(`⚠️ [${_printTag}]`, ...args); }