@thomaflette/eslint-plugin-solid-2 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -23,7 +23,9 @@ import solid from "@thomaflette/eslint-plugin-solid-2";
23
23
  export default [solid.configs.recommended];
24
24
  ```
25
25
 
26
- For a TypeScript project, prefer the type-checked config. It adds cross-file component detection and enables `prefer-for` only when the receiver is proven to be an array:
26
+ For a TypeScript project, prefer the type-checked config. It adds cross-file component detection,
27
+ nominal accessor and re-exported Solid API recognition, and enables `prefer-for` only when the
28
+ receiver is proven to be an array:
27
29
 
28
30
  ```js
29
31
  // eslint.config.js
@@ -55,7 +57,7 @@ The `flat/recommended` and `flat/recommended-type-checked` names are aliases for
55
57
  | `no-leaf-owner-operations` | Invalid cleanup, flush, and child-owner work inside leaf owners. |
56
58
  | `no-owned-scope-writes` | State writes and action calls from component or compute scopes. |
57
59
  | `no-reactive-read-after-await` | Accessor reads after an `await` in a reactive computation. |
58
- | `no-stale-props-alias` | Top-level aliases of reactive prop reads. |
60
+ | `no-stale-props-alias` | Provable untracked reactive reads in components and control-flow function children. |
59
61
  | `no-untracked-read-in-effect-apply` | Signal and store reads in an effect apply callback. |
60
62
  | `prefer-for` | Uses `<For>` for reactive array rendering when type information proves `Array#map`. |
61
63
  | `prefer-show` | Uses `<Show>` for idiomatic reactive JSX conditionals. |
@@ -80,6 +82,7 @@ vp install
80
82
  vp check
81
83
  vp test
82
84
  vp run build
85
+ vp test bench
83
86
  ```
84
87
 
85
88
  ## License