Cam McHenry
Cam McHenry
@therewillbecode I'm not completely sure on this one yet, I don't think it's clear to me. I think something that like allowing annotations on a config struct, or perhaps a...
> How do we feel about a single top-level binary combining the linter and formatter? It's less analogous to eslint but similar to what biome does From a user perspective,...
> It seems that there are still some places in `rulegen` that do not handle `String.raw` and `dedent`, `outdent` in `Expression::TaggedTemplateExpression`. I am thinking whether to deal with it in...
I think this is working as expected, unless we want to diverge on the behavior here from ESLint. I just tried this out of the box with `[email protected]` and `[email protected]`...
We don't support presets in the same way that ESLint does (like `plugin:whatever/recommended`), but we do support the `extends` keyword now in https://github.com/oxc-project/oxc/issues/9307. So something like this will work: ```jsonc...
`.oxlintrc.json` now supports the `extends` keyword in https://github.com/oxc-project/oxc/issues/9307. Something like this from the original example will work: ```jsonc // .oxlintrc.json { "extends": ["../.eslintrc.json"], "rules": { // ... } }
cc @broccolinisoup as this looks to be related to the new tooltip component, which is indirectly causing this issue in the button group. We had to work around this in...
I attempted to do this, but I had an absolute heck of a time getting the lifetimes to work out properly. I'm not experienced enough with Rust yet to know...
Closing this as done with https://github.com/oxc-project/oxc/pull/6722, we even got the extra credit 😄
> Benchmarking on an internal codebase, I'm seeing a roughly 14% perf degredation with a single override that uses 4 glob patterns. I wonder how much of that is related...