Skip to content

Commit 103cc51

Browse files
jkrehmjkrehm-cvnaJounQin
authored
fix resolveConfig to work with Prettier 3 (#942)
Co-authored-by: Jonathan Rehm <[email protected]> Co-authored-by: JounQin <[email protected]>
1 parent 7a896fc commit 103cc51

File tree

7 files changed

+27
-46
lines changed

7 files changed

+27
-46
lines changed

.all-contributorsrc

+7
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,13 @@
340340
"test",
341341
"tool"
342342
]
343+
},
344+
{
345+
"login": "jkrehm",
346+
"name": "Jonathan Rehm",
347+
"avatar_url": "https://avatars.githubusercontent.com/u/999845?v=4",
348+
"profile": "https://jonathan.rehm.me/",
349+
"contributions": ["bug", "code"]
343350
}
344351
],
345352
"repoType": "github",

.changeset/great-cups-sparkle.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'prettier-eslint': patch
3+
---
4+
5+
fix: update `resolveConfig` to work with Prettier 3

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,7 @@ Thanks goes to these people ([emoji key][emojis]):
307307
<td align="center" valign="top" width="14.28%"><a href="https://campcode.dev/"><img src="https://avatars.githubusercontent.com/u/10620169?v=4?s=100" width="100px;" alt="Rebecca Vest"/><br /><sub><b>Rebecca Vest</b></sub></a><br /><a href="https://github.com/prettier/prettier-eslint/commits?author=idahogurl" title="Code">💻</a></td>
308308
<td align="center" valign="top" width="14.28%"><a href="https://github.com/chrisbobbe"><img src="https://avatars.githubusercontent.com/u/22248748?v=4?s=100" width="100px;" alt="Chris Bobbe"/><br /><sub><b>Chris Bobbe</b></sub></a><br /><a href="https://github.com/prettier/prettier-eslint/issues?q=author%3Achrisbobbe" title="Bug reports">🐛</a> <a href="https://github.com/prettier/prettier-eslint/commits?author=chrisbobbe" title="Code">💻</a></td>
309309
<td align="center" valign="top" width="14.28%"><a href="https://www.1stg.me/"><img src="https://avatars.githubusercontent.com/u/8336744?v=4?s=100" width="100px;" alt="JounQin"/><br /><sub><b>JounQin</b></sub></a><br /><a href="#question-JounQin" title="Answering Questions">💬</a> <a href="https://github.com/prettier/prettier-eslint/commits?author=JounQin" title="Code">💻</a> <a href="#design-JounQin" title="Design">🎨</a> <a href="https://github.com/prettier/prettier-eslint/commits?author=JounQin" title="Documentation">📖</a> <a href="#ideas-JounQin" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-JounQin" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-JounQin" title="Maintenance">🚧</a> <a href="#plugin-JounQin" title="Plugin/utility libraries">🔌</a> <a href="#projectManagement-JounQin" title="Project Management">📆</a> <a href="https://github.com/prettier/prettier-eslint/pulls?q=is%3Apr+reviewed-by%3AJounQin" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/prettier/prettier-eslint/commits?author=JounQin" title="Tests">⚠️</a> <a href="#tool-JounQin" title="Tools">🔧</a></td>
310+
<td align="center" valign="top" width="14.28%"><a href="https://jonathan.rehm.me/"><img src="https://avatars.githubusercontent.com/u/999845?v=4?s=100" width="100px;" alt="Jonathan Rehm"/><br /><sub><b>Jonathan Rehm</b></sub></a><br /><a href="https://github.com/prettier/prettier-eslint/commits?author=jkrehm" title="Code">💻</a></td>
310311
</tr>
311312
</tbody>
312313
</table>

src/__mocks__/prettier.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ const mockFormatSpy = jest.fn(mockFormat);
77

88
Object.assign(prettier, {
99
format: mockFormatSpy,
10-
resolveConfig: {
11-
sync: jest.fn(prettier.resolveConfig.sync)
12-
}
10+
resolveConfig: jest.fn()
1311
});
1412

1513
function mockFormat(...args) {

src/__tests__/index.js

+4-22
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ beforeEach(() => {
235235
eslintMock.mock.lintText.mockClear();
236236
eslintMock.mock.calculateConfigForFile.mockClear();
237237
prettierMock.format.mockClear();
238-
prettierMock.resolveConfig.sync.mockClear();
238+
prettierMock.resolveConfig.mockClear();
239239
fsMock.readFileSync.mockClear();
240240
loglevelMock.mock.clearAll();
241241
global.__PRETTIER_ESLINT_TEST_STATE__ = {};
@@ -376,33 +376,15 @@ test('logs error if it cannot read the file from the filePath', async () => {
376376
fsMock.readFileSync = originalMock;
377377
});
378378

379-
test('calls prettier.resolveConfig.sync with the file path', async () => {
379+
test('calls prettier.resolveConfig with the file path', async () => {
380380
const filePath = require.resolve('../../tests/fixtures/paths/foo.js');
381381
await format({
382382
filePath,
383383
text: defaultInputText(),
384384
eslintConfig: getESLintConfigWithDefaultRules()
385385
});
386-
expect(prettierMock.resolveConfig.sync).toHaveBeenCalledTimes(1);
387-
expect(prettierMock.resolveConfig.sync).toHaveBeenCalledWith(filePath);
388-
});
389-
390-
test('does not raise an error if prettier.resolveConfig.sync is not defined', () => {
391-
const filePath = require.resolve('../../tests/fixtures/paths/foo.js');
392-
const originalPrettierMockResolveConfigSync = prettierMock.resolveConfig.sync;
393-
prettierMock.resolveConfig.sync = undefined;
394-
395-
function callingFormat() {
396-
return format({
397-
filePath,
398-
text: defaultInputText(),
399-
eslintConfig: getESLintConfigWithDefaultRules()
400-
});
401-
}
402-
403-
expect(callingFormat).not.toThrowError();
404-
405-
prettierMock.resolveConfig.sync = originalPrettierMockResolveConfigSync;
386+
expect(prettierMock.resolveConfig).toHaveBeenCalledTimes(1);
387+
expect(prettierMock.resolveConfig).toHaveBeenCalledWith(filePath);
406388
});
407389

408390
test('does not raise an error if prettier.resolveConfig is not defined', async () => {

src/__tests__/utils.js

+7-14
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,7 @@ getPrettierOptionsFromESLintRulesTests.forEach(
190190
const { prettier } = getOptionsForFormatting(
191191
{ rules },
192192
prettierOptions,
193-
fallbackPrettierOptions,
194-
eslintPath
193+
fallbackPrettierOptions
195194
);
196195
expect(prettier).toMatchObject(options);
197196
});
@@ -221,8 +220,7 @@ test('if fallbacks are provided, those are preferred over disabled eslint rules'
221220
{},
222221
{
223222
singleQuote: true
224-
},
225-
eslintPath
223+
}
226224
);
227225
expect(prettier).toMatchObject({ singleQuote: true });
228226
});
@@ -233,8 +231,7 @@ test('if fallbacks are provided, those are used if not found in eslint', () => {
233231
undefined,
234232
{
235233
singleQuote: false
236-
},
237-
eslintPath
234+
}
238235
);
239236
expect(prettier).toMatchObject({ singleQuote: false });
240237
});
@@ -253,8 +250,7 @@ test('eslint max-len.tabWidth value should be used for tabWidth when tabs are us
253250
}
254251
},
255252
undefined,
256-
undefined,
257-
eslintPath
253+
undefined
258254
);
259255

260256
expect(prettier).toMatchObject({
@@ -270,8 +266,7 @@ test('eslint config has only necessary properties', () => {
270266
rules: { 'no-with': 'error', quotes: [2, 'single'] }
271267
},
272268
undefined,
273-
undefined,
274-
eslintPath
269+
undefined
275270
);
276271
expect(eslint).toMatchObject({
277272
fix: true,
@@ -284,8 +279,7 @@ test('useEslintrc is set to the given config value', () => {
284279
const { eslint } = getOptionsForFormatting(
285280
{ useEslintrc: true, rules: {} },
286281
undefined,
287-
undefined,
288-
eslintPath
282+
undefined
289283
);
290284
expect(eslint).toMatchObject({ fix: true, useEslintrc: true });
291285
});
@@ -299,8 +293,7 @@ test('Turn off unfixable rules', () => {
299293
}
300294
},
301295
undefined,
302-
undefined,
303-
eslintPath
296+
undefined
304297
);
305298

306299
expect(eslint).toMatchObject({

src/index.js

+2-7
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ async function format(options) {
6565
// Let prettier infer the parser using the filepath, if present. Otherwise
6666
// assume the file is JS and default to the babel parser.
6767
filePath ? { filepath: filePath } : { parser: 'babel' },
68-
getPrettierConfig(filePath, prettierPath),
68+
await getPrettierConfig(filePath, prettierPath),
6969
options.prettierOptions
7070
);
7171

@@ -298,12 +298,7 @@ async function getESLintConfig(filePath, eslintPath, eslintOptions) {
298298

299299
function getPrettierConfig(filePath, prettierPath) {
300300
const prettier = requireModule(prettierPath, 'prettier');
301-
return (
302-
(prettier.resolveConfig &&
303-
prettier.resolveConfig.sync &&
304-
prettier.resolveConfig.sync(filePath)) ||
305-
{}
306-
);
301+
return prettier.resolveConfig && prettier.resolveConfig(filePath);
307302
}
308303

309304
function getModulePath(filePath = __filename, moduleName) {

0 commit comments

Comments
 (0)