This repository has been 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
-
I think it's good if we have option to sort imports similar how
eslint-plugin-import
works.import react from 'react'
import _ from lodash
import { Box } from '@mui/material'
import './components/Button'
or vise versa:
import './components/Button'
import { Box } from '@mui/material'
import _ from lodash
import react from 'react'
Beta Was this translation helpful? Give feedback.
All reactions