-
Notifications
You must be signed in to change notification settings - Fork 154
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: reorder imports via prettier #286
Conversation
Signed-off-by: Paul Schultz <[email protected]>
|
…into import-order
packages/app/src/App.tsx
Outdated
<Route | ||
path="/tech-radar" | ||
element={<TechRadarPage width={1500} height={800} id="default" />} | ||
/> | ||
<Route path="/tech-radar" element={<TechRadarPage width={1500} height={800} id="default" />} /> |
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.
So I see that a lot of these have been collapsed, I don't really have a preference either way but I wonder what other people think about the difference between the two? @christophe-f
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.
Personally I think having print width of 100 characters is better because we are working on screens that can support more than 80 characters lol.
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.
LGTM
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.
As discussed several times, we need to stay in parity with upstream. This PR will not be merged.
Signed-off-by: Paul Schultz <[email protected]>
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
@christophe-f We have already merged a PR like this in janus-idp/backstage-plugins#419. The only changes with this PR is to the import order and it does not diverge in anything else from the upstream. |
Description
Please explain the changes you made here.
Reorders the imports to maintain parity with the janus plugins repo. janus-idp/backstage-plugins#419
Which issue(s) does this PR fix
N/A
PR acceptance criteria
Please make sure that the following steps are complete:
How to test changes / Special notes to the reviewer