Skip to content

Commit 14f1883

Browse files
authored
Merge pull request #349 from mizdra/support-flat-config-2024-3
Support flat config
2 parents 8cef9dd + 9f8925f commit 14f1883

File tree

13 files changed

+329
-98
lines changed

13 files changed

+329
-98
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2+
3+
exports[`fix problems with flat config 1`] = `"const a = 1;"`;

e2e-test/flat-config/index.test.ts

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import { afterEach, test, expect } from 'vitest';
2+
import { createIFF } from '../../src/test-util/fixtures.js';
3+
import dedent from 'dedent';
4+
import { ChildProcessWithoutNullStreams, spawn } from 'child_process';
5+
import { createStreamWatcher } from '../../src/test-util/stream-watcher.js';
6+
import { readFile } from 'node:fs/promises';
7+
import { dirname, join } from 'path';
8+
import { fileURLToPath } from 'url';
9+
10+
const __dirname = dirname(fileURLToPath(import.meta.url));
11+
12+
const ETX = String.fromCharCode(0x03); // ^C
13+
const LF = String.fromCharCode(0x0a); // \n
14+
15+
const iff = await createIFF({
16+
'src/index.js': 'let a = 1;',
17+
'eslint.config.js': dedent`
18+
export default [
19+
{ rules: { 'prefer-const': 'error' } },
20+
];
21+
`,
22+
'package.json': '{ "type": "module" }',
23+
});
24+
25+
function waitForClose(child: ChildProcessWithoutNullStreams) {
26+
return new Promise<void>((resolve) => {
27+
child.on('close', resolve);
28+
});
29+
}
30+
31+
let child: ChildProcessWithoutNullStreams;
32+
afterEach(async () => {
33+
child.kill();
34+
await waitForClose(child);
35+
await iff.reset();
36+
});
37+
38+
test('fix problems with flat config', async () => {
39+
child = spawn(
40+
'node',
41+
[
42+
join(__dirname, '../../bin/eslint-interactive.js'),
43+
'src',
44+
// merge stderr to stdout
45+
'2>&1',
46+
],
47+
{ shell: true, stdio: 'pipe', cwd: iff.rootDir, env: { ...process.env, ESLINT_USE_FLAT_CONFIG: 'true' } },
48+
);
49+
const streamWatcher = createStreamWatcher(child.stdout, { debug: false });
50+
51+
await streamWatcher.match(/Which rules would you like to apply action\?/);
52+
child.stdin.write(' '); // Select `prefer-const` rule
53+
child.stdin.write(LF); // Confirm the choice
54+
await streamWatcher.match(/Which action do you want to do\?/);
55+
child.stdin.write('1'); // Focus on `Run `eslint --fix``
56+
child.stdin.write(LF); // Confirm the choice
57+
await streamWatcher.match(/Fixing done\./);
58+
expect(await readFile(iff.paths['src/index.js'], 'utf-8')).toMatchSnapshot();
59+
child.stdin.write(ETX); // Exit
60+
});

e2e-test/flat-config/package.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "module",
3+
"dependencies": {
4+
"eslint-interactive": "../../"
5+
}
6+
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ test('can print error with eslint-formatter-codeframe', async () => {
3636
],
3737
{ shell: true, stdio: 'pipe', cwd: __dirname, env: { ...process.env, ESLINT_USE_FLAT_CONFIG: 'false' } },
3838
);
39-
const streamWatcher = createStreamWatcher(child.stdout, { debug: true });
39+
const streamWatcher = createStreamWatcher(child.stdout, { debug: false });
4040

4141
await streamWatcher.match(/Which rules would you like to apply action\?/);
4242
child.stdin.write(' '); // Select `semi` rule

fixtures/eslint.config.mjs

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// @ts-check
2+
3+
import { FlatCompat } from '@eslint/eslintrc';
4+
5+
const compat = new FlatCompat();
6+
7+
export default [
8+
...compat.plugins('import'),
9+
...compat.env({ node: true, es2020: true }),
10+
{
11+
files: ['**/*.js', '**/*.mjs', '**/*.jsx'],
12+
languageOptions: {
13+
sourceType: 'module',
14+
ecmaVersion: 2020,
15+
parserOptions: {
16+
ecmaFeatures: {
17+
jsx: true,
18+
},
19+
},
20+
},
21+
rules: {
22+
'semi': 2,
23+
'import/order': [2, { alphabetize: { order: 'asc' } }],
24+
'prefer-const': 2,
25+
'no-unused-vars': [
26+
2,
27+
{
28+
ignoreRestSiblings: true,
29+
argsIgnorePattern: '^_',
30+
caughtErrors: 'all',
31+
},
32+
],
33+
'ban-exponentiation-operator': 'off', // Disable in flat config
34+
'no-useless-escape': 2,
35+
'no-unsafe-negation': 2,
36+
'arrow-body-style': [2, 'always'],
37+
38+
},
39+
},
40+
]

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"@types/node": "^20.8.10",
4545
"@types/yargs": "^17.0.29",
4646
"dedent": "^1.5.1",
47-
"eslint": "^8.53.0",
47+
"eslint": "^8.57.0",
4848
"fs-extra": "^11.1.1",
4949
"import-meta-resolve": "^4.0.0",
5050
"npm-run-all": "^4.1.5",

0 commit comments

Comments
 (0)