oxc icon indicating copy to clipboard operation
oxc copied to clipboard

⚓ A collection of JavaScript tools written in Rust.

Results 315 oxc issues
Sort by recently updated
recently updated
newest added

### 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":...

C-bug
good first issue
A-linter

### 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":...

C-bug
good first issue
A-linter

Part of #6959 ``` let { x, ...y } = z ``` -> ``` var _z = z, x = _z.x, y = _objectWithoutProperties(_z, ["x"]); ```

C-enhancement
A-transformer