no-unused-vars rule of ESLint (and typescript-eslint) supports ignoreUsingDeclarations option for Explicit Resource Management, which suppress errors for "unused" variable with using declaration (the variable is implicitly used though).
https://eslint.org/docs/latest/rules/no-unused-vars#ignoreusingdeclarations
It would great if oxlint also supports this option.
// these lines should OK with `ignoreUsingDeclarations` option
using syncResource = getSyncResource();
await using asyncResource = getAsyncResource();