https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/no-react-specific-props.md
Disallow React prop compatibility which was deprecated in Solid 1.4.0.
Implemented in #2427
https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/components-return-once.md
Solid components only run once, and so conditionals should be inside JSX.
WIP #2439
https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/prefer-show.md
Enforce using Solid's component for conditionally showing content. Solid's compiler covers this case, so it's a stylistic rule only.
https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/prefer-for.md
Enforce using Solid's component for mapping an array to JSX elements. This rule is an error by default.
https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/no-destructure.md
Disallow destructuring props. In Solid, props must be used with property accesses (props.foo) to preserve reactivity.
https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/no-react-deps.md
Disallow usage of dependency arrays in createEffect and createMemo.
https://github.com/solidjs-community/eslint-plugin-solid/blob/main/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.
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too