Skip to content

Commit 6fe6ee6

Browse files
committed
add comment
1 parent 788e94d commit 6fe6ee6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/eslint-plugin-svelte/src/rules/require-store-reactive-access.ts

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export default createRule('require-store-reactive-access', {
7676
if (node.key.name.name !== 'this' && canAcceptStoreAttributeElement(node.parent.parent)) {
7777
return;
7878
}
79+
// Check for <input bind:value={ () => {}, (v) => {} } />
7980
if (node.expression?.type === 'SvelteFunctionBindingsExpression') {
8081
for (const expr of node.expression.expressions) {
8182
verifyExpression(expr, {

0 commit comments

Comments
 (0)