Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: Update shouldUseFlatConfig and CLI so flat config is default #17748

Merged
merged 13 commits into from
Dec 20, 2023
Prev Previous commit
Next Next commit
Fix test
  • Loading branch information
nzakas committed Dec 20, 2023
commit 99e5f75bd1f6ac8797d95e94baa45fa9a3c56285
2 changes: 1 addition & 1 deletion tests/lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ describe("cli", () => {
it(`should execute without any errors with configType:${configType}`, async () => {
const formatterPath = getFixturePath("formatters", "async.js");
const filePath = getFixturePath("passing.js");
const exit = await cli.execute(`-f ${formatterPath} ${filePath}`);
const exit = await cli.execute(`-f ${formatterPath} ${filePath} --no-config-lookup`);
nzakas marked this conversation as resolved.
Show resolved Hide resolved

assert.strictEqual(log.info.getCall(0).args[0], "from async formatter");
assert.strictEqual(exit, 0);
Expand Down