Skip to content

Commit

Permalink
docs(stylelint-plugin-meteor): update list of rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Haberkamp committed Dec 10, 2024
1 parent 9f973a0 commit 30fc271
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@
<!-- @vue-expect-error -->
<div
ref="popoverContent"
class="mt-select-result-list__content"
:class="{
'mt-select-result-list__content_empty': isLoading && (!options || options.length <= 0),
}"
:class="[
'mt-select-result-list__content',
{
'mt-select-result-list__content_empty': isLoading && (!options || options.length <= 0),
},
]"
@scroll="onScroll"
>
<slot name="before-item-list" />
Expand Down
8 changes: 5 additions & 3 deletions packages/stylelint-plugin-meteor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ Add this package to your stylelint config.

# Rules

- `meteor/prefer-sizing-token`
- `meteor/prefer-color-token`
- `meteor/prefer-background-token`
- `meteor/no-primitive-token`
- `meteor/prefer-background-token`
- `meteor/prefer-border-token`
- `meteor/prefer-color-token`
- `meteor/prefer-font-token`
- `meteor/prefer-sizing-token`

0 comments on commit 30fc271

Please sign in to comment.