-
-
Notifications
You must be signed in to change notification settings - Fork 188
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
style(frontend): organize imports with Biome TASK-1640 #5568
Merged
Conversation
This file contains 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
This feature was designed for use in conjunction with AMD module loaders in the browser, and is not recommended in any other context. As of TypeScript 4.1, baseUrl is no longer required to be set when using paths. ~ https://www.typescriptlang.org/tsconfig/#baseUrl
from 'jsapp/js/utils -> from 'utils from 'js/utils -> from 'utils from 'jsapp/js -> from 'js
magicznyleszek
approved these changes
Mar 4, 2025
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.
Just one question to verify things. Other than that LGTM, tested and works like a charm :)
9 tasks
jamesrkiger
pushed a commit
that referenced
this pull request
Mar 5, 2025
Loading
Loading status checks…
…5571) ### 🗒️ Checklist 1. [X] run linter locally 2. [X] update all related docs (API, README, inline, etc.), if any 3. [X] draft PR with a title `<type>(<scope>)<!>: <title> TASK-1234` 4. [X] tag PR: at least `frontend` or `backend` unless it's global 5. [X] fill in the template below and delete template comments 6. [X] review thyself: read the diff and repro the preview as written 7. [X] open PR & confirm that CI passes 8. [X] request reviewers, if needed 9. [ ] delete this section before merging ### 💭 Notes Error from #5568. The Leaflet library needs to have the L object imported before other leaflet imports. ### 👀 Preview steps 1. ℹ️ have an account and a project 2. Navigate to the Project Summary page 4. 🔴 [on main] notice that if you click on "Data" or "Settings", an error message is shown 5. 🟢 [on PR] notice that you can click on and view the "Data" and "Settings" pages
Akuukis
added a commit
that referenced
this pull request
Mar 19, 2025
Loading
Loading status checks…
### 📣 Summary Revert broken default line-height for various elements. ### 💭 Notes CSS import order matters, because CSS selectors with equal specificity the last one applies. #5568 across files moved mantine default styles after kobo styles that changed the resulting CSS rules. ### 👀 Preview steps - launch frontend - 🟢 notice that line-height is as expected (compare with before/after screenshots in the ticket)
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.
💭 Notes
See
package.json
,tsconfig.json
,biome.jsonc
,webpack.common.js
,kpi.code-workspace
andjs/k-icons.ts
files. The rest are semi-auto-generated.Organize imports using Biome, automatically on save in VSCode workspace. As Biome explains:
For smarter distance calculation Biome treats
#
prefixed paths as internal paths (as implemented by nodejs itself), and so I also did a simple search/replace refactor to consolidate aliases and remapjsapp/js/*
to#/*
.Biome supports grouped imports. Note that manually set grouped imports conflicts with auto-import functionality - auto-imports just add the new import at the end of imports and so at the end of last import group instead of the correct import group, and then either we commit wrong grouping or the import has to be adjusted manually anyways. Usually the first, but both defeats the purpose of either auto-imports or import group. Unless, it's ok to most of time to automatically add to only the last group, while only manually to others! Here's my compromise:
import './example.scss'
), we want the order of them manually reviewed anyways. And we will have less of them over time.import { ... } from 'react'
only, because it looks like all of like to see react import at the top of other imports, because almost all files already had it there. It's only one line (or none), there wont be second line.👀 Preview steps
Developers:
Users:
import '
to review those parts.