Closed
Description
Using "eslint-plugin-import": "2.27.5"
// test.js
import chpro from 'child_process';
import log4js from 'log4js';
import util from 'util';
const execFile = util.promisify(chpro.execFile);
const logger = log4js.getLogger('server');
I would expect util
to be sorted before log4js
but this is not the case. Neither is node:util
.