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
Right now when we import types the top level is sorted, but if the import is destructured the internal list is not in any particular order. For instance:
import { db } from '../../db';
import type {
UserFunderRole,
InternallyWritableUserFunderRole,
JsonResultSet,
} from '../../../types';
The types could be in any order.
Furthermore when exporting the exports can be in any order, e.g.:
We should update eslint before taking this on but there are two plugins I wanted to propose we consider adding and enabling:
Right now when we import types the top level is sorted, but if the import is destructured the internal list is not in any particular order. For instance:
The types could be in any order.
Furthermore when exporting the exports can be in any order, e.g.:
The text was updated successfully, but these errors were encountered: