Having a file like test.vue:
<script>
debugger;
</script>
And executing the code action Disable no-debugger for this file.
Will output the result like:
// oxlint-disable no-debugger
<script>
debugger;
</script>
it should be inside the section source-text of the file like:
<script>
// oxlint-disable no-debugger
debugger;
</script>
Maybe change the description too to Disable no-debugger for this script block