Skip to content

Commit

Permalink
chore: eslint disable for lines
Browse files Browse the repository at this point in the history
  • Loading branch information
AxiosLeo committed Jan 3, 2025
1 parent a5e4dff commit 25bb0cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/workflow.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable no-console */
'use strict';

const os = require('os');
const { printer } = require('@axiosleo/cli-tool');
Expand Down Expand Up @@ -127,6 +125,7 @@ function showDebugInfo(context, location, error) {
printer.yellow(_fixed('requestID', wide)).print(': ').println(context.request_id);
if (!error) {
printer.yellow('responseData').print(': ');
// eslint-disable-next-line no-console
console.log(context.response.data);
}
if (location && location.indexOf('node:internal') === -1) {
Expand Down Expand Up @@ -200,6 +199,7 @@ function response(context) {
if (error) {
showDebugInfo(context, '', error);
printer.red('requestError').print(': ');
// eslint-disable-next-line no-console
console.log(error);
}
if (context.app.config.debug && !error) {
Expand Down

0 comments on commit 25bb0cc

Please sign in to comment.