This repository was archived by the owner on Aug 31, 2023. It is now read-only.
Ordering imports lint rule #4181
igortas
started this conversation in
Suggestions
Replies: 1 comment
-
|
This is something that Rome already supports via VSCode extension, and soon available via CLI too. Check https://github.com/rome/tools/blob/main/editors/vscode/README.md and seach for important sorting |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I think it's good if we have option to sort imports similar how
eslint-plugin-importworks.import react from 'react'import _ from lodashimport { Box } from '@mui/material'import './components/Button'or vise versa:
import './components/Button'import { Box } from '@mui/material'import _ from lodashimport react from 'react'Beta Was this translation helpful? Give feedback.
All reactions