Skip to content

Commit f3575cf

Browse files
authored
Merge pull request #379 from mizdra/use-default-formatter
Use `stylish` as default formatter instead of eslint-formatter-codeframe
2 parents 48c9f39 + b94db80 commit f3575cf

File tree

10 files changed

+28
-74
lines changed

10 files changed

+28
-74
lines changed

bin/eslint-interactive.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,4 @@ const dir = join(dirname(fileURLToPath(import.meta.url)));
1010

1111
const scriptFile = resolve(dir, '_eslint-interactive.js');
1212

13-
spawnSync(
14-
'node',
15-
['--unhandled-rejections=strict', '--experimental-import-meta-resolve', scriptFile, ...process.argv.slice(2)],
16-
{ stdio: 'inherit' },
17-
);
13+
spawnSync('node', ['--unhandled-rejections=strict', scriptFile, ...process.argv.slice(2)], { stdio: 'inherit' });

e2e-test/global-installation/index.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ test('verify installation', async () => {
2626
expect(result.toString().trim()).toBe(VERSION);
2727
});
2828

29-
test('can print error with eslint-formatter-codeframe', async () => {
29+
test('can print error with stylish', async () => {
3030
const child = spawn(
3131
'eslint-interactive',
3232
[
@@ -46,6 +46,6 @@ test('can print error with eslint-formatter-codeframe', async () => {
4646
await streamWatcher.match(/In what way are the details displayed\?/);
4747
child.stdin.write('0'); // Focus on `Print in terminal`
4848
child.stdin.write(LF); // Confirm the choice
49-
await streamWatcher.match(/Missing semicolon/); // formatted by eslint-formatter-codeframe
49+
await streamWatcher.match(/Missing semicolon/);
5050
child.stdin.write(ETX); // Exit
5151
});

package.json

-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
"@types/yargs": "^17.0.29",
4545
"dedent": "^1.5.1",
4646
"eslint": "^8.57.0",
47-
"import-meta-resolve": "^4.0.0",
4847
"npm-run-all2": "^5.0.0",
4948
"prettier": "3.0.3",
5049
"stream-match": "^4.1.0",
@@ -56,7 +55,6 @@
5655
"chalk": "^5.3.0",
5756
"comlink": "^4.4.1",
5857
"enquirer": "^2.4.1",
59-
"eslint-formatter-codeframe": "^7.32.1",
6058
"estraverse": "^5.3.0",
6159
"find-cache-dir": "^5.0.0",
6260
"is-installed-globally": "^1.0.0",

pnpm-lock.yaml

+12-35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/__snapshots__/core.test.ts.snap

+9-12
Original file line numberDiff line numberDiff line change
@@ -271,18 +271,15 @@ exports[`Core > lint > returns lint results 1`] = `
271271
exports[`Core > makeFixableAndFix 1`] = `"const _a = 1;"`;
272272

273273
exports[`Core > printDetailsOfResults 1`] = `
274-
"error: Ban exponentiation operator (ban-exponentiation-operator) at <fixture>/src/ban-exponentiation-operator.js:1:1:
275-
> 1 | 2 ** 2;
276-
| ^
277-
278-
279-
error: Definition for rule 'import/order' was not found (import/order) at <fixture>/src/import-order.js:1:1:
280-
> 1 | import b from 'b';
281-
| ^
282-
2 | import a from 'a';
283-
284-
285-
2 errors found."
274+
"
275+
<fixture>/src/ban-exponentiation-operator.js
276+
 1:1 error Ban exponentiation operator ban-exponentiation-operator
277+

278+
<fixture>/src/import-order.js
279+
 1:1 error Definition for rule 'import/order' was not found import/order
280+

281+
✖ 2 problems (2 errors, 0 warnings)
282+
"
286283
`;
287284
288285
exports[`Core > printSummaryOfResults 1`] = `

src/cli/parse-argv.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export type ParsedCLIOptions = {
2020

2121
/** Default CLI Options */
2222
export const cliOptionsDefaults = {
23-
formatterName: 'codeframe',
23+
formatterName: 'stylish',
2424
quiet: false,
2525
useEslintrc: true,
2626
cache: true,

src/cli/run.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export async function run(options: Options) {
4444
// ref: https://github.com/chalk/supports-color/issues/97, https://github.com/nodejs/node/issues/26946
4545
FORCE_HYPERLINK: terminalLink.isSupported ? '1' : '0',
4646
},
47-
// NOTE: Pass CLI options (--experimental-import-meta-resolve, etc.) to the worker
47+
// NOTE: Pass CLI options (--unhandled-rejections=strict, etc.) to the worker
4848
execArgv: process.execArgv,
4949
});
5050
// eslint-disable-next-line @typescript-eslint/no-explicit-any

src/core.test.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { dirname, join, relative } from 'node:path';
33
import { fileURLToPath } from 'node:url';
44
import dedent from 'dedent';
55
import { ESLint, Linter } from 'eslint';
6-
import { resolve } from 'import-meta-resolve';
76
import { beforeEach, describe, expect, test, vi } from 'vitest';
87
import { Core } from './core.js';
98
import { LegacyESLint } from './eslint/use-at-your-own-risk.js';
@@ -149,9 +148,7 @@ const iff = await createIFF({
149148

150149
const core = new Core({
151150
patterns: ['src'],
152-
// For some reason, the test fails if `formatterName === 'codeframe'`.
153-
// So here we overwrite it.
154-
formatterName: fileURLToPath(resolve('eslint-formatter-codeframe', import.meta.url)),
151+
formatterName: 'stylish',
155152
cwd: iff.rootDir,
156153
eslintOptions: { type: 'eslintrc', rulePaths: ['rules'] },
157154
});

src/core.ts

+1-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import { writeFile } from 'node:fs/promises';
2-
import { fileURLToPath } from 'node:url';
32
import { ESLint, Rule } from 'eslint';
4-
import isInstalledGlobally from 'is-installed-globally';
53
import { DescriptionPosition } from './cli/prompt.js';
64
import { Config, NormalizedConfig, normalizeConfig } from './config.js';
75
import { LegacyESLint, FlatESLint } from './eslint/use-at-your-own-risk.js';
@@ -112,15 +110,7 @@ export class Core {
112110
*/
113111
async formatResultDetails(results: ESLint.LintResult[], ruleIds: (string | null)[]): Promise<string> {
114112
const formatterName = this.config.formatterName;
115-
116-
// When eslint-interactive is installed globally, eslint-formatter-codeframe will also be installed globally.
117-
// On the other hand, `eslint.loadFormatter` cannot load the globally installed formatter by name. So here it loads them by path.
118-
const resolvedFormatterNameOrPath =
119-
isInstalledGlobally && formatterName === 'codeframe'
120-
? fileURLToPath(import.meta.resolve('eslint-formatter-codeframe', import.meta.resolve('eslint-interactive')))
121-
: formatterName;
122-
123-
const formatter = await this.eslint.loadFormatter(resolvedFormatterNameOrPath);
113+
const formatter = await this.eslint.loadFormatter(formatterName);
124114
return formatter.format(filterResultsByRuleId(results, ruleIds));
125115
}
126116

vite.config.base.ts

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export const baseConfig = defineConfig({
1212
env: {
1313
FORCE_HYPERLINK: '1',
1414
FORCE_COLOR: '1',
15-
NODE_OPTIONS: '--experimental-import-meta-resolve',
1615
},
1716
exclude: [...configDefaults.exclude, 'tmp/**'],
1817
},

0 commit comments

Comments
 (0)