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
Hello,
I'm trying to figure out something that I can't seem to get a handle on. I have the plugin working mostly as i want except for one annoyance. In the following imports:
import clsx from 'clsx';
import Text from '@ui/Text';
import {triggerHaptics} from '@utils/hardware';
import {type Medal} from '../../types';
import css from './Medals.module.scss';
import commonCss from '../Collections.module.scss';
The last two should be reversed. I'd like the output to be:
import clsx from 'clsx';
import Text from '@ui/Text';
import {triggerHaptics} from '@utils/hardware';
import {type Medal} from '../../types';
import commonCss from '../Collections.module.scss';
import css from './Medals.module.scss';
so that the most local scss import is last (it has caused some issues in overriding classes). My config is as follows:
Hello,
I'm trying to figure out something that I can't seem to get a handle on. I have the plugin working mostly as i want except for one annoyance. In the following imports:
The last two should be reversed. I'd like the output to be:
so that the most local scss import is last (it has caused some issues in overriding classes). My config is as follows:
I can't seem to nail down the proper config to get this working as I'd like. what am i missing to get this sorting properly?
Thank you for your help.
The text was updated successfully, but these errors were encountered: