style(ui): prettier formatting pass over the dashboard#29622
Open
ryan-crabbe-berri wants to merge 1 commit into
Open
style(ui): prettier formatting pass over the dashboard#29622ryan-crabbe-berri wants to merge 1 commit into
ryan-crabbe-berri wants to merge 1 commit into
Conversation
Contributor
|
Too many files changed for review. ( |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
9e13637 to
100f407
Compare
Formatting-only pass; no logic changes. Brings the UI into compliance with .prettierrc so the new format-check CI job passes
100f407 to
1b06a42
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Relevant issues
Linear ticket
Refs LIT-3556
Pre-Submission checklist
Please complete all items before asking a LiteLLM maintainer to review your PR
make test-unit@greptileaiand received a Confidence Score of at least 4/5 before requesting a maintainer reviewScreenshots / Proof of Fix
Prettier is configured in the UI (
.prettierrc,format/format:checkscripts) but the codebase had drifted out of compliance. This is a mechanicalprettier --write .pass that brings every file into line; it changes formatting only, no logic.Before,
format:checkfailed on 608 files; after the pass it is clean:npm ci && npm run buildstill passes after the pass, confirming nothing broke.Enforcing the check in CI is intentionally left to a follow-up PR so this one stays a reviewable, logic-free diff.
Type
🧹 Refactoring
Changes
A single formatting-only pass (
prettier --write .) overui/litellm-dashboard, touching 608 files. Reflows, quote normalization, and trailing commas only; no behavior changes. Tailwind class sorting and import sorting were intentionally left out to avoid scope creep.