Commits
Click on a commit to change the comparison rangefeat(linter): add fix for unused disable directive (#11708)
Added tests for later, see linked issue #11709.

```
// oxlint-disable-next-line no-debugger -- on wrong line
(() => {
debugger;
})();
```
will fix to:
```
//
(() => {
debugger;
})();
```
Not the best, but at least a start.
Don't know what kind of fix it should be. It is currently a `SafeFix`.
ToDo:
- No other code actions ✔️
- generate correct spans for directives with multiple rules ✔️