feat: change type from deprecated `FlatConfig` to `Config`
Hello,
the type FlatConfig has been replaced with Config, according to the deprecation warning.
I just changed the type with the suggested one.
Cheers!
🦋 Changeset detected
Latest commit: 42abb5d36861690f4bce6ba2769f77ee435cd79d
The changes in this PR will be included in the next version bump.
This PR includes changesets to release 1 package
| Name | Type |
|---|---|
| eslint-plugin-prettier | Minor |
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
@irsooti I tried your change but maybe it's because I use the eslint.config.ts since ESLint 9.9.0.
eslint.config.ts:29:3 - error TS2345: Argument of type 'Config<RulesRecord>' is not assignable to parameter of type 'ConfigWithExtends'.
Types of property 'languageOptions' are incompatible.
Type 'import("path/node_modules/.pnpm/@[email protected]/node_modules/@types/eslint/index").Linter.LanguageOptions | undefined' is not assignable to type 'import("path/node_modules/.pnpm/@[email protected][email protected][email protected][email protected]/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config").FlatConfig.LanguageOptions | undefined'.
Type 'import("path/node_modules/.pnpm/@[email protected]/node_modules/@types/eslint/index").Linter.LanguageOptions' is not assignable to type 'import("path/node_modules/.pnpm/@[email protected][email protected][email protected][email protected]/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config").FlatConfig.LanguageOptions'.
Types of property 'globals' are incompatible.
Type 'Globals | undefined' is not assignable to type 'GlobalsConfig | undefined'.
Type 'Globals' is not assignable to type 'GlobalsConfig'.
'string' index signatures are incompatible.
Type 'GlobalConf' is not assignable to type 'GlobalVariableOption'.
Type '"readable"' is not assignable to type 'GlobalVariableOption'.
Edit:
It seems to work using Readonly<Linter.RulesRecord> instead of Linter.Config like used here
https://github.com/DefinitelyTyped/DefinitelyTyped/blob/136deed9a5c0adaea7bc7674783bb52608673d05/types/eslint__js/index.d.ts#L5
It seems to work using Readonly<Linter.RulesRecord> instead of Linter.Config like used here
That's not same thing, RulesRecord only include rules, but recommended.js is different.
https://github.com/prettier/eslint-plugin-prettier/blob/aa5b59f7d98431bdb9559d079619065f812a2420/recommended.js#L5-L17
This would be a breaking change for eslint v8 users.
It's working for me without my workaround since some time.
Walkthrough
A new changeset file was added to document a minor update to the eslint-plugin-prettier package. The update introduces a conditional type alias, IfEqual, within the type declarations. This alias is used to determine if Linter.Config and Linter.FlatConfig are equivalent, and accordingly sets the type of recommendedConfig to prefer Config when both types are equal. No changes were made to the declarations of exported or public entities beyond the type alias and the updated type for recommendedConfig.
Changes
| File(s) | Change Summary |
|---|---|
| .changeset/lucky-badgers-judge.md | Added a changeset documenting a minor update to the eslint-plugin-prettier package regarding type preference. |
| recommended.d.ts | Introduced IfEqual type alias; updated recommendedConfig type to use conditional type logic for type equality. |
Sequence Diagram(s)
sequenceDiagram
participant Developer
participant TypeSystem
Developer->>TypeSystem: Reference recommendedConfig
TypeSystem->>TypeSystem: Evaluate IfEqual<Linter.Config, Linter.FlatConfig, Linter.Config, Linter.FlatConfig>
alt Types are equal
TypeSystem-->>Developer: recommendedConfig is Linter.Config
else Types are not equal
TypeSystem-->>Developer: recommendedConfig is Linter.FlatConfig
end
Poem
A hop and a skip, a type check anew,
Where Configs and FlatConfigs meet in review.
If equal, we cheer, and Config takes the lead,
If not, FlatConfig fulfills every need.
With changesets noted and types all aligned,
This rabbit approves—what a clever design!
🐇✨
📜 Recent review details
Configuration used: CodeRabbit UI Review profile: CHILL Plan: Pro
📥 Commits
Reviewing files that changed from the base of the PR and between 9e37575b2852226077b21975ea96315bb794d2b1 and 42abb5d36861690f4bce6ba2769f77ee435cd79d.
📒 Files selected for processing (2)
-
.changeset/lucky-badgers-judge.md(1 hunks) -
recommended.d.ts(1 hunks)
🔇 Additional comments (2)
recommended.d.ts (1)
10-10: The type condition appropriately handles ESLint version compatibility.This change implements the preference for
ConfigoverFlatConfigwhen they're equal, aligning with ESLint's deprecation notice while maintaining backward compatibility with both ESLint v8 and v9..changeset/lucky-badgers-judge.md (1)
1-5: Appropriate changeset documentation for a minor version change.The changeset correctly documents this as a minor version change with a clear description that matches the implementation. This ensures users are properly informed about the change in the release notes.
✨ Finishing Touches
- [ ] 📝 Generate Docstrings
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.
🪧 Tips
Chat
There are 3 ways to chat with CodeRabbit:
- Review comments: Directly reply to a review comment made by CodeRabbit. Example:
-
I pushed a fix in commit <commit_id>, please review it. -
Generate unit testing code for this file. -
Open a follow-up GitHub issue for this discussion.
-
- Files and specific lines of code (under the "Files changed" tab): Tag
@coderabbitaiin a new review comment at the desired location with your query. Examples:-
@coderabbitai generate unit testing code for this file. -
@coderabbitai modularize this function.
-
- PR comments: Tag
@coderabbitaiin a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:-
@coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase. -
@coderabbitai read src/utils.ts and generate unit testing code. -
@coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format. -
@coderabbitai help me debug CodeRabbit configuration file.
-
Support
Need help? Create a ticket on our support page for assistance with any issues or questions.
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.
CodeRabbit Commands (Invoked using PR comments)
-
@coderabbitai pauseto pause the reviews on a PR. -
@coderabbitai resumeto resume the paused reviews. -
@coderabbitai reviewto trigger an incremental review. This is useful when automatic reviews are disabled for the repository. -
@coderabbitai full reviewto do a full review from scratch and review all the files again. -
@coderabbitai summaryto regenerate the summary of the PR. -
@coderabbitai generate docstringsto generate docstrings for this PR. -
@coderabbitai generate sequence diagramto generate a sequence diagram of the changes in this PR. -
@coderabbitai resolveresolve all the CodeRabbit review comments. -
@coderabbitai configurationto show the current CodeRabbit configuration for the repository. -
@coderabbitai helpto get help.
Other keywords and placeholders
- Add
@coderabbitai ignoreanywhere in the PR description to prevent this PR from being reviewed. - Add
@coderabbitai summaryto generate the high-level summary at a specific location in the PR description. - Add
@coderabbitaianywhere in the PR title to generate the title automatically.
CodeRabbit Configuration File (.coderabbit.yaml)
- You can programmatically configure CodeRabbit by adding a
.coderabbit.yamlfile to the root of your repository. - Please see the configuration documentation for more information.
- If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation:
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
Documentation and Community
- Visit our Documentation for detailed information on how to use CodeRabbit.
- Join our Discord Community to get help, request features, and share feedback.
- Follow us on X/Twitter for updates and announcements.
@coderabbitai full review
✅ Actions performed
Full review triggered.