azaleta

Results 29 comments of azaleta

sorry for my misunderstanding. this should be process in unplugin-vue-component(not in unplugin-auto-import). And also, currently it has a bug. Please wait this PR and reconfirm (the final solution may be...

enum (https://github.com/unjs/mlly/pull/69)

https://github.com/unocss/unocss/blob/d2b022d313c39aa9c1e309a6167f4be699489fd4/packages/core/src/generator/index.ts#L105-L108 `container` can be loaded from func `expandShortcut` (from preset-wind) So it will be only processed `stringifyShortcuts` (preset thing only) and skip the custom rules. Maybe a merge/override logic is...

I consider this as a limitation. The auto-import concept is 1. parsing source and get all things need to import 2. generate a dts file (for output of step 1)...

what's the vscode output of unocss?Did your config be loaded? ![image](https://user-images.githubusercontent.com/22554452/189132689-bc358b9c-12d0-461a-84ed-cf296ede088c.png)

>The branch coverage seems to differ I think vitest report is correct. Only one branch(if at line 2~4) exists [am i right?] this branch could not be reached. So the...

https://github.com/antfu/unplugin-vue-components/blob/cb8f9325ffdaeb74927d823095a30d2ec9a262a9/src/core/utils.ts#L28 suppose you using a component name with full uppercase. This is out of range. normally, a compont name like TartNode will be splitted with Uppercase (T/N) then combine with...

``` name.match(/^T[A-Z]/ ``` your own code 'TART_NODE' matchs the naming rule(start with T) that will trigger the tdesign process.

> Maybe we could generate the disable comments for prettier and eslint out-of-box. WDYT? eslint: Easy Mode prettier: Hell Mode according to [#5287](https://github.com/prettier/prettier/issues/5287) prettier don't support block disable in TS/JS...

your resolvers defination contains VuetifyResolver only, so only VuetifyResolver will work. According to [Vuetify Resolver](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/vuetify.ts) ```ts export function VuetifyResolver(): ComponentResolver { return { type: 'component', resolve: (name: string) => {...