Skip to content

Commit

Permalink
debugger: disable only the lint rules required by current file state
Browse files Browse the repository at this point in the history
PR-URL: nodejs#38529
Backport-PR-URL: nodejs#39446
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
Trott authored and foxxyz committed Oct 18, 2021
1 parent 1081059 commit e706b8d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions lib/internal/inspector/inspect_repl.js
@@ -1,5 +1,6 @@
// TODO(trott): enable ESLint
/* eslint-disable */
/* eslint-disable getter-return, no-restricted-syntax,
node-core/prefer-primordials */

'use strict';
const FS = require('fs');
Expand Down Expand Up @@ -353,10 +354,8 @@ function createRepl(inspector) {

[util.inspect.custom](depth, { stylize }) {
const { startTime, endTime } = this.data;
return stylize(
`[Profile ${endTime - startTime}${String.fromCharCode(956)}s]`,
'special'
);
const MU = String.fromChar(956);
return stylize(`[Profile ${endTime - startTime}${MU}s]`, 'special');
}

save(filename = 'node.cpuprofile') {
Expand Down

0 comments on commit e706b8d

Please sign in to comment.