oxc
oxc copied to clipboard
⚓ A collection of JavaScript tools written in Rust.
### What version of Oxlint are you using? 0.10.3 ### What command did you run? oxlint -c .oxlint.json ### What does your `.oxlint.json` config file look like? ``` { "env":...
### What version of Oxlint are you using? 0.10.3 ### What command did you run? oxlint -c .oxlint.json ### What does your `.oxlint.json` config file look like? ``` { "categories":...
Part of #6959 ``` let { x, ...y } = z ``` -> ``` var _z = z, x = _z.x, y = _objectWithoutProperties(_z, ["x"]); ```