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.
Using
"eslint-plugin-import": "2.27.5"I would expect
utilto be sorted beforelog4jsbut this is not the case. Neither isnode:util.