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
Options shown here are the defaults. Manually configuring an array will *replace* the defaults.
172
+
173
+
```js
174
+
{
175
+
"solid/reactivity": ["warn", {
176
+
// List of function names to consider as reactive functions (allow signals to be safely passed as arguments). In addition, any create* or use* functions are automatically included.
"List of function names to consider as reactive functions (allow signals to be safely passed as arguments). In addition, any create* or use* functions are automatically included.",
245
+
type: "array",
246
+
items: {
247
+
type: "string",
248
+
},
249
+
default: [],
250
+
},
251
+
},
252
+
additionalProperties: false,
253
+
},
254
+
],
228
255
messages: {
229
256
noWrite: "The reactive variable '{{name}}' should not be reassigned or altered directly.",
230
257
untrackedReactive:
@@ -243,8 +270,12 @@ export default createRule({
243
270
"This tracked scope should not be async. Solid's reactivity only tracks synchronously.",
0 commit comments