-
-
Notifications
You must be signed in to change notification settings - Fork 1
chore(deps): update linting #374
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
base: master
Are you sure you want to change the base?
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Summary of ChangesHello @WomB0ComB0, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request updates the Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
📝 WalkthroughWalkthroughBump two devDependencies in Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
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. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request updates the prettier development dependency from version 3.7.4 to 3.8.0. This is a minor version bump which typically includes bug fixes and is expected to be non-breaking. The change is straightforward and looks good to merge.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@package.json`:
- Around line 216-219: .prettierrc.json currently lists
prettier-plugin-tailwindcss before other plugins which breaks Tailwind plugin
behavior; open .prettierrc.json and reorder the "plugins" array so
prettier-plugin-tailwindcss is last, e.g. list
"prettier-plugin-organize-imports" then "prettier-plugin-packagejson" and
finally "prettier-plugin-tailwindcss" to ensure correct load order with Prettier
3.8.0.
📜 Review details
Configuration used: Organization UI
Review profile: ASSERTIVE
Plan: Pro
📒 Files selected for processing (1)
package.json
✏️ Tip: You can disable this entire section by setting review_details to false in your review settings.
package.json
Outdated
| "prettier": "3.8.0", | ||
| "prettier-plugin-organize-imports": "4.3.0", | ||
| "prettier-plugin-packagejson": "2.5.21", | ||
| "prettier-plugin-tailwindcss": "0.7.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
Prettier 3.8.0 release notes changelog
💡 Result:
Prettier 3.8.0 — release notes (summary)
- Released: January 14, 2026.
- Highlight: Support Angular v21.1.
- Full release entry and changelog on the Prettier GitHub releases page. [1]
Source:
[1] Prettier releases — 3.8.0 (GitHub).
🌐 Web query:
prettier-plugin-organize-imports prettier-plugin-packagejson prettier-plugin-tailwindcss Prettier 3.8.0 compatibility
💡 Result:
Short answer: All three plugins are compatible with Prettier 3.x (so they should work with Prettier 3.8.0) — with a few notes on configuration/ordering.
- prettier-plugin-tailwindcss — requires Prettier v3 (v0.5.x+), is ESM-only, and must be loaded last when using other plugins (it contains explicit workarounds but must be last in the plugins array). [1]
- prettier-plugin-organize-imports — supports Prettier 3; note it overrides Prettier’s built-in JS/TS parsers, so it’s incompatible with other plugins that do the same unless it’s the last-loaded relevant parser. [2]
- prettier-plugin-packagejson — supports Prettier v3+; for Prettier 3+ you must list it in the plugins option (no automatic discovery). [3]
If you run into issues with Prettier in editors (e.g., prettier-vscode) or plugin loading, ensure:
- your plugins are listed in your Prettier config (plugins: [...] ) or passed with --plugin, and paths include file extensions for ESM loading;
- plugin load order places tailwindcss last and any parser-overriding plugin last for the affected languages;
- you use compatible plugin versions (check each plugin’s README/changelog if you see errors).
Sources:
[1] prettier-plugin-tailwindcss README (requires Prettier v3, ESM, must be loaded last).
[2] prettier-plugin-organize-imports README (Prettier 3 support; overrides parsers).
[3] prettier-plugin-packagejson README (supports Prettier v3+, requires listing in plugins).
🏁 Script executed:
# Check if prettier config exists in package.json
grep -A 20 '"prettier"' package.json | grep -E '"prettier"|plugins'Repository: WomB0ComB0/portfolio
Length of output: 88
🏁 Script executed:
# Check for .prettierrc files
fd -e prettierrc -e prettierrc.json -e prettierrc.yaml -e prettierrc.yml -e prettierrc.js -e prettierrc.cjs -e prettierrc.mjsRepository: WomB0ComB0/portfolio
Length of output: 46
🏁 Script executed:
# Read package.json to find prettier configuration section
cat package.json | grep -A 50 '"prettier":' | head -60Repository: WomB0ComB0/portfolio
Length of output: 459
🏁 Script executed:
# Also check if there's a prettier.config.js or .prettierrc in the root
ls -la | grep -E 'prettier|\.prettierrc'Repository: WomB0ComB0/portfolio
Length of output: 198
🏁 Script executed:
cat .prettierrc.jsonRepository: WomB0ComB0/portfolio
Length of output: 763
Fix plugin load order in .prettierrc.json before updating Prettier.
The Prettier 3.8.0 version bump is valid and all three plugins are compatible with Prettier 3.x. However, the plugin configuration in .prettierrc.json has a critical ordering issue: prettier-plugin-tailwindcss must be loaded last to function correctly, but it's currently listed first in the plugins array. This will cause formatting conflicts or unexpected behavior.
Reorder the plugins in .prettierrc.json to:
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-packagejson",
"prettier-plugin-tailwindcss"
]🤖 Prompt for AI Agents
In `@package.json` around lines 216 - 219, .prettierrc.json currently lists
prettier-plugin-tailwindcss before other plugins which breaks Tailwind plugin
behavior; open .prettierrc.json and reorder the "plugins" array so
prettier-plugin-tailwindcss is last, e.g. list
"prettier-plugin-organize-imports" then "prettier-plugin-packagejson" and
finally "prettier-plugin-tailwindcss" to ensure correct load order with Prettier
3.8.0.
d09b278 to
eb9385d
Compare
eb9385d to
156a7b3
Compare
156a7b3 to
1909c1b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@package.json`:
- Around line 216-218: The package.json lists a non-existent Prettier version;
update the "prettier" dependency from "3.8.1" to "3.8.0" in package.json (the
"prettier" entry shown in the diff), then run your package manager to refresh
the lockfile (npm/yarn/pnpm install) so the lockfile reflects the valid version.
| "prettier": "3.8.1", | ||
| "prettier-plugin-organize-imports": "4.3.0", | ||
| "prettier-plugin-packagejson": "2.5.21", | ||
| "prettier-plugin-packagejson": "2.5.22", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Version 3.8.1 does not exist - use 3.8.0 instead.
The latest prettier version on npm is 3.8.0, last published 2 days ago. The package.json specifies prettier: 3.8.1 which will cause installation failures since this version doesn't exist. The PR description correctly mentions upgrading to 3.8.0.
🔧 Suggested fix
- "prettier": "3.8.1",
+ "prettier": "3.8.0",📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| "prettier": "3.8.1", | |
| "prettier-plugin-organize-imports": "4.3.0", | |
| "prettier-plugin-packagejson": "2.5.21", | |
| "prettier-plugin-packagejson": "2.5.22", | |
| "prettier": "3.8.0", | |
| "prettier-plugin-organize-imports": "4.3.0", | |
| "prettier-plugin-packagejson": "2.5.22", |
🤖 Prompt for AI Agents
In `@package.json` around lines 216 - 218, The package.json lists a non-existent
Prettier version; update the "prettier" dependency from "3.8.1" to "3.8.0" in
package.json (the "prettier" entry shown in the diff), then run your package
manager to refresh the lockfile (npm/yarn/pnpm install) so the lockfile reflects
the valid version.
This PR contains the following updates:
3.7.4→3.8.12.5.21→2.5.22Release Notes
prettier/prettier (prettier)
v3.8.1Compare Source
diff
Include available
printersin plugin type declarations (#18706 by @porada)v3.8.0Compare Source
diff
🔗 Release Notes
matzkoh/prettier-plugin-packagejson (prettier-plugin-packagejson)
v2.5.22Compare Source
Bug Fixes
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Renovate Bot.