Closed
Description
It would be nice to order imports based on their extension. For our case, we want to leave all css modules imported at the end of the imports list
import styles from '../styles.scss';
import CustomModule from './custom-module';```
Here it is more preferable to warn us move `styles` after `CustomModule`