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
|| 🔧 |[solid/prefer-classlist](docs/prefer-classlist.md)| Enforce using the classlist prop over importing a classnames helper. The classlist prop accepts an object `{ [class: string]: boolean }` just like classnames. |
139
143
| ✔ | 🔧 |[solid/prefer-for](docs/prefer-for.md)| Enforce using Solid's `<For />` component for mapping an array to JSX elements. |
140
144
|| 🔧 |[solid/prefer-show](docs/prefer-show.md)| Enforce using Solid's `<Show />` component for conditionally showing content. Solid's compiler covers this case, so it's a stylistic rule only. |
141
-
| ✔ ||[solid/reactivity](docs/reactivity.md)| Enforce that reactive expressions (props, signals, memos, etc.) are only usedin tracked scopes; otherwise, they won't update the view as expected. |
145
+
| ✔ ||[solid/reactivity](docs/reactivity.md)| Enforce that reactivity (props, signals, memos, etc.) is properly used, so changes in those values will be tracked and update the view as expected. |
142
146
| ✔ | 🔧 |[solid/self-closing-comp](docs/self-closing-comp.md)| Disallow extra closing tags for components without children. |
143
147
| ✔ | 🔧 |[solid/style-prop](docs/style-prop.md)| Require CSS properties in the `style` prop to be valid and kebab-cased (ex. 'font-size'), not camel-cased (ex. 'fontSize') like in React, and that property values with dimensions are strings, not numbers with implicit 'px' units. |
0 commit comments