Skip to content

Commit

Permalink
chore(projects): disabled unocss eslint rule: order-attributify
Browse files Browse the repository at this point in the history
  • Loading branch information
honghuangdc committed Apr 13, 2024
1 parent e58cf26 commit 8783804
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ export default defineConfig(
'warn',
'PascalCase',
{
registeredComponentsOnly: false,
ignores: ['/^icon-/']
}
]
],
'order-attributify': 'off'
}
}
);
2 changes: 1 addition & 1 deletion packages/materials/src/libs/admin-layout/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ function handleClickMask() {
<!-- Main Content -->
<main
:id="isContentScroll ? scrollElId : undefined"
class="flex flex-grow flex-col"
class="flex flex-col flex-grow"
:class="[commonClass, contentClass, leftGapClass, { 'overflow-y-auto': isContentScroll }]"
>
<slot></slot>
Expand Down

0 comments on commit 8783804

Please sign in to comment.