You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What does your .oxlintrc.json config file look like?
N/A
What happened?
I'm trying to migrate from eslint. In ESLint, one of the TypeScript rules, array-type lets you specify what style, and oxlint has this too. They support either array (e.g. number[]), generic (e.g. Array<number>), or a third option which oxlint (at least according to the docs) does not support, array-simple. This supports number[] because it is simple, but Array<number | null> because it is not simple. This is a pattern we've used quite a bit in our application. It would be good if oxlint supported the same third option.