Skip to content

Commit 81ddf6a

Browse files
committed
remove unused options
1 parent ddfb904 commit 81ddf6a

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

tests/lib/rules/no-shadow-native-events.js

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,7 @@ tester.run('no-shadow-native-events', rule, {
395395
}
396396
}
397397
</script>
398-
`,
399-
options: [{ allowProps: true }]
398+
`
400399
},
401400

402401
// <script setup>
@@ -575,8 +574,7 @@ tester.run('no-shadow-native-events', rule, {
575574
}
576575
}
577576
</script>
578-
`,
579-
options: [{ allowProps: true }]
577+
`
580578
},
581579
{
582580
filename: 'test.vue',
@@ -587,8 +585,7 @@ tester.run('no-shadow-native-events', rule, {
587585
<script setup>
588586
defineProps(unknown)
589587
</script>
590-
`,
591-
options: [{ allowProps: true }]
588+
`
592589
},
593590
{
594591
filename: 'test.vue',
@@ -601,8 +598,7 @@ tester.run('no-shadow-native-events', rule, {
601598
props: [foo],
602599
}
603600
</script>
604-
`,
605-
options: [{ allowProps: true }]
601+
`
606602
},
607603
{
608604
filename: 'test.vue',
@@ -615,8 +611,7 @@ tester.run('no-shadow-native-events', rule, {
615611
props: [...foo],
616612
}
617613
</script>
618-
`,
619-
options: [{ allowProps: true }]
614+
`
620615
},
621616
{
622617
// new syntax in Vue 3.3

0 commit comments

Comments
 (0)