-
Notifications
You must be signed in to change notification settings - Fork 0
fmt(js): npm run fix auto-fix
#10
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -120,11 +120,11 @@ export const $isBlocked = computed( | |
| export const hasFloatingPanel = (overlay: OverlayState): boolean => | ||
| Boolean( | ||
| overlay.modelPicker || | ||
| overlay.pager || | ||
| overlay.petPicker || | ||
| overlay.pluginsHub || | ||
| overlay.sessions || | ||
| overlay.skillsHub | ||
| overlay.pager || | ||
| overlay.petPicker || | ||
| overlay.pluginsHub || | ||
| overlay.sessions || | ||
| overlay.skillsHub | ||
|
Comment on lines
122
to
+127
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔍 Deindented boolean chain in hasFloatingPanel is not prettier-idiomatic The reformat drops the continuation indentation on the Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| ) | ||
|
|
||
| export const $isStatusRuleOccluded = computed([$overlayState, $uiState], (overlay, ui) => | ||
|
|
||
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.
📝 Info: Union type collapsed onto one line exceeds the usual readability threshold
RightPanePerfEventis now a single 120-char union line instead of the leading-pipe multi-line form. Purely cosmetic and semantically identical, but adding a sixth member will re-wrap the whole declaration, producing noisy diffs. Same shape appears in the reformatted cast atui-tui/src/__tests__/scrollBoxRendererBounds.test.ts:385-386.Was this helpful? React with 👍 or 👎 to provide feedback.