You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we use the order rule to group similar imports, which is very useful.
We would love to be able to sort alphabetically inside the groups (sort by the import path):
import fs from 'fs';
import path from 'path';
import crypto from 'crypto'; // fails because it should be before the fs import
import request from 'request';
import _ from 'lodash'; // fails because it should be before the request import
Thanks!
The text was updated successfully, but these errors were encountered:
we use the
order
rule to group similar imports, which is very useful.We would love to be able to sort alphabetically inside the groups (sort by the import path):
Thanks!
The text was updated successfully, but these errors were encountered: