napi-rs / node-rs

Node.js bindings ❤️ Rust crates
https://node-rs.dev
MIT License
1.03k stars 32 forks source link

chore(deps): update dependency oxlint to ^0.4.0 #842

Closed renovate[bot] closed 3 weeks ago

renovate[bot] commented 1 month ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
oxlint (source) ^0.3.0 -> ^0.4.0 age adoption passing confidence

Release Notes

oxc-project/oxc (oxlint) ### [`v0.4.1`](https://togithub.com/oxc-project/oxc/releases/tag/oxlint_v0.4.1): oxlint v0.4.1 [Compare Source](https://togithub.com/oxc-project/oxc/compare/e5337f00b1c7b49cb09d28b860e112d4ebad3233...d971c9cd0b7da94896179ebd5a8b95b62d05a1c1) ##### What's Changed - fix(parser): fix lexer error while parsing parenthesized arrow expressions by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3400](https://togithub.com/oxc-project/oxc/pull/3400) The previous version refactored some parsing code around arrow expressions, which failed to parse the following snippet correctly ```javascript (/\./.exec()) ``` **Full Changelog**: https://github.com/oxc-project/oxc/compare/oxlint_v0.4.0...oxlint_v0.4.1 ### [`v0.4.0`](https://togithub.com/oxc-project/oxc/releases/tag/oxlint_v0.4.0): oxlint v0.4.0 [Compare Source](https://togithub.com/oxc-project/oxc/compare/754d9f4c98aab052cf6b2756f7af12557042708d...e5337f00b1c7b49cb09d28b860e112d4ebad3233) ##### Potential Breaking Changes ##### enforce rule severity from the cli and configuration file by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3337](https://togithub.com/oxc-project/oxc/pull/3337) The `--deny` or `-D` flag in the CLI, and the `"error"` severity setting in the configuration file will now set linter diagnostics to be an "error" and exit the program with exit code 1. Previously, these flags had no effect, and all linter diagnostics were reported as warnings. This means in CI, `oxlint --deny-warnings` is no longer needed for exit code 1 if `oxlint -D correctness` is set. To restore the previous "report as warning" behaviour, the `--warn` or `-W` flag is added to the CLI, and the `"warn"` severity in the configuration file will take into effect. ##### merge deepscan rules into oxc rules by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3327](https://togithub.com/oxc-project/oxc/pull/3327) `deepscan` rules are now "oxc" rules, because there is no "deepscan" plugin in the eslint ecosystem and this caused some confusion. ##### Ecosystem CI We added the [`Oxlint Ecosystem CI`](https://togithub.com/oxc-project/oxlint-ecosystem-ci/actions/workflows/ecosystem-ci.yml) to maximize ecosystem compatibility, reduce churn, and minimize break-after-release ##### New Features - `--disable-oxc-plugin` by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3328](https://togithub.com/oxc-project/oxc/pull/3328) - `--disable`-react/unicorn/typescript-`plugin` by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3305](https://togithub.com/oxc-project/oxc/pull/3305) The default rule set enables some plugins by default, the following CLI arguments are added for disabling them: - `--disable-react-plugin` - `--disable-unicorn-plugin` - `--disable-oxc-plugin` - `--disable-typescript-plugin` ##### New Rules Two notable new rules that are under experiment but worth a try: ##### No Barrel File `oxlint --import-plugin -D no-barrel-file` Loading a lot of modules is slow for runtimes and bundlers. image To change the threshhold: `oxlint -c oxlintrc.json --import-plugin -D no-barrel-file` ```json { "rules": { "oxc/no-barrel-file": ["error", { "threshold": 10 }] } } ``` See [Speeding up the JavaScript ecosystem - The barrel file debacle](https://marvinh.dev/blog/speeding-up-javascript-ecosystem-part-7) for background reading. ##### Rule of Hooks `oxlint -D rules-of-hooks` Enforce the React Rules of Hooks. - `eslint-plugin-jest/no-duplicate-hooks` by [@​eryue0220](https://togithub.com/eryue0220) in [https://github.com/oxc-project/oxc/pull/3358](https://togithub.com/oxc-project/oxc/pull/3358) - `default-case` rule by [@​jelly](https://togithub.com/jelly) in [https://github.com/oxc-project/oxc/pull/3379](https://togithub.com/oxc-project/oxc/pull/3379) - `no-new` by [@​jelly](https://togithub.com/jelly) in [https://github.com/oxc-project/oxc/pull/3368](https://togithub.com/oxc-project/oxc/pull/3368) - `prefer-exponentiation-operator` by [@​jelly](https://togithub.com/jelly) in [https://github.com/oxc-project/oxc/pull/3365](https://togithub.com/oxc-project/oxc/pull/3365) - `symbol-description` by [@​jelly](https://togithub.com/jelly) in [https://github.com/oxc-project/oxc/pull/3364](https://togithub.com/oxc-project/oxc/pull/3364) - `jsdoc/require-returns-description` by [@​leaysgur](https://togithub.com/leaysgur) in [https://github.com/oxc-project/oxc/pull/3397](https://togithub.com/oxc-project/oxc/pull/3397) ##### Bug Fixes - fix(linter): avoid infinite loop in `jest/expect-expect` by [@​mysteryven](https://togithub.com/mysteryven) in [https://github.com/oxc-project/oxc/pull/3332](https://togithub.com/oxc-project/oxc/pull/3332) - fix(linter): avoid infinite loop when traverse ancestors in `jest/no_conditional_expect` by [@​mysteryven](https://togithub.com/mysteryven) in [https://github.com/oxc-project/oxc/pull/3330](https://togithub.com/oxc-project/oxc/pull/3330) - fix(linter): fix panic in jest/expect-expect by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3324](https://togithub.com/oxc-project/oxc/pull/3324) - fix(linter/jsx-no-undef): check for globals when an identifier is undefined by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3331](https://togithub.com/oxc-project/oxc/pull/3331) - fix(linter/next): false positives for non-custom font link by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/oxc-project/oxc/pull/3383](https://togithub.com/oxc-project/oxc/pull/3383) ##### Performance Improvements - perf(lexer): use bitshifting when parsing known integers by [@​DonIsaac](https://togithub.com/DonIsaac) in [https://github.com/oxc-project/oxc/pull/3296](https://togithub.com/oxc-project/oxc/pull/3296) - perf(linter): use `usize` for `RuleEnum` hash by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3336](https://togithub.com/oxc-project/oxc/pull/3336) - perf(parser): more efficient number parsing by [@​overlookmotel](https://togithub.com/overlookmotel) in [https://github.com/oxc-project/oxc/pull/3342](https://togithub.com/oxc-project/oxc/pull/3342) - perf(parser): use `FxHashSet` for `not_parenthesized_arrow` by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3344](https://togithub.com/oxc-project/oxc/pull/3344) - perf(parser): improve `parse_simple_arrow_function_expression` by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3349](https://togithub.com/oxc-project/oxc/pull/3349) - perf(parser): improve expression parsing by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3352](https://togithub.com/oxc-project/oxc/pull/3352) - perf(parser): improve is_parenthesized_arrow_function_expression by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3343](https://togithub.com/oxc-project/oxc/pull/3343) ##### What's coming next - Published JSON schema for configuration file - More features to the configuration file - Automatically synced and never outdated documentation website pages - [Command-line Interface](https://oxc-project.github.io/docs/guide/usage/linter/cli.html) - [Configuration File](https://oxc-project.github.io/docs/guide/usage/linter/config.html) - [Rules Page](https://oxc-project.github.io/docs/guide/usage/linter/rules.html) **Full Changelog**: https://github.com/oxc-project/oxc/compare/oxlint_v0.3.5...oxlint_v0.4.0 ### [`v0.3.5`](https://togithub.com/oxc-project/oxc/releases/tag/oxlint_v0.3.5): oxlint v0.3.5 [Compare Source](https://togithub.com/oxc-project/oxc/compare/7193d75e9444ae8c2ba757b3bc64459abd0e128a...754d9f4c98aab052cf6b2756f7af12557042708d) #### What's Changed - feat(linter): add use-isnan fixer for (in)equality operations by [@​DonIsaac](https://togithub.com/DonIsaac) in [https://github.com/oxc-project/oxc/pull/3284](https://togithub.com/oxc-project/oxc/pull/3284) - feat(linter/eslint): Implement fixer for unicode-bom rule by [@​jelly](https://togithub.com/jelly) in [https://github.com/oxc-project/oxc/pull/3259](https://togithub.com/oxc-project/oxc/pull/3259) - fix(linter/no-direct-mutation-state): false positive when class is declared inside a `CallExpression` by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3294](https://togithub.com/oxc-project/oxc/pull/3294) - fix(parser): parse `DecoratorCallExpression` when `Arguments` contains `MemberExpression` by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3265](https://togithub.com/oxc-project/oxc/pull/3265) - perf(ast): inline all `ASTBuilder` methods by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3295](https://togithub.com/oxc-project/oxc/pull/3295) - perf(lexer): dedupe numeric separator check by [@​DonIsaac](https://togithub.com/DonIsaac) in [https://github.com/oxc-project/oxc/pull/3283](https://togithub.com/oxc-project/oxc/pull/3283) - perf(linter): rewrite react/require-render-return by [@​mysteryven](https://togithub.com/mysteryven) in [https://github.com/oxc-project/oxc/pull/3276](https://togithub.com/oxc-project/oxc/pull/3276) #### New Contributors - [@​g-plane](https://togithub.com/g-plane) made their first contribution in [https://github.com/oxc-project/oxc/pull/3268](https://togithub.com/oxc-project/oxc/pull/3268) **Full Changelog**: https://github.com/oxc-project/oxc/compare/oxlint_v0.3.4...oxlint_v0.3.5 ### [`v0.3.4`](https://togithub.com/oxc-project/oxc/releases/tag/oxlint_v0.3.4): oxlint v0.3.4 [Compare Source](https://togithub.com/oxc-project/oxc/compare/6149e49ef79a22004e36820c81afcb0c755fcc81...7193d75e9444ae8c2ba757b3bc64459abd0e128a) #### What's Changed - [feat(linter): move react/rules_of_hooks to nursery](https://togithub.com/oxc-project/oxc/commit/6edcae86cda8922ea8f9e5eae91290018e1b1637) - feat(linter/eslint): Implement max-classes-per-file by [@​jelly](https://togithub.com/jelly) in [https://github.com/oxc-project/oxc/pull/3241](https://togithub.com/oxc-project/oxc/pull/3241) - **Full Changelog**: https://github.com/oxc-project/oxc/compare/oxlint_v0.3.3...oxlint_v0.3.4 *** ### From v0.3.3 #### What's Changed ##### Features - add `--symlinks` to allow symbolic walking by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3244](https://togithub.com/oxc-project/oxc/pull/3244) - add `--format github` for github check annotation by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3191](https://togithub.com/oxc-project/oxc/pull/3191) - change the category of all react-perf rules to perf by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/oxc-project/oxc/pull/3243](https://togithub.com/oxc-project/oxc/pull/3243) - remove deprecated eslint v9 rules `no-return-await` and `no-mixed-operators` by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3188](https://togithub.com/oxc-project/oxc/pull/3188) - move prefer-node-protocol to restriction by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3171](https://togithub.com/oxc-project/oxc/pull/3171) ##### New Rules - react/rules-of-hooks by [@​rzvxa](https://togithub.com/rzvxa) in [https://github.com/oxc-project/oxc/pull/3071](https://togithub.com/oxc-project/oxc/pull/3071) - eslint/radix by [@​KubaJastrz](https://togithub.com/KubaJastrz) in [https://github.com/oxc-project/oxc/pull/3167](https://togithub.com/oxc-project/oxc/pull/3167) - eslint/no-new-native-nonconstructor by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3187](https://togithub.com/oxc-project/oxc/pull/3187) - eslint/unicode-bom by [@​jelly](https://togithub.com/jelly) in [https://github.com/oxc-project/oxc/pull/3239](https://togithub.com/oxc-project/oxc/pull/3239) - eslint/no-empty-function rule by [@​jelly](https://togithub.com/jelly) in [https://github.com/oxc-project/oxc/pull/3181](https://togithub.com/oxc-project/oxc/pull/3181) - eslint-plugin-next/no-duplicate-head by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3174](https://togithub.com/oxc-project/oxc/pull/3174) - eslint-plugin-next/no-page-custom-font by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/oxc-project/oxc/pull/3185](https://togithub.com/oxc-project/oxc/pull/3185) - eslint-plugin-next/no-styled-jsx-in-document by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/oxc-project/oxc/pull/3184](https://togithub.com/oxc-project/oxc/pull/3184) - unicorn/no-anonymous-default-export by [@​1zumii](https://togithub.com/1zumii) in [https://github.com/oxc-project/oxc/pull/3220](https://togithub.com/oxc-project/oxc/pull/3220) ##### Bug Fixes - improve `prefer-string-starts-ends-with` rule by [@​camc314](https://togithub.com/camc314) in [https://github.com/oxc-project/oxc/pull/3176](https://togithub.com/oxc-project/oxc/pull/3176) - import/export: improve multiple exports error message by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/oxc-project/oxc/pull/3160](https://togithub.com/oxc-project/oxc/pull/3160) - import/named: handle `import { default as foo }` by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3255](https://togithub.com/oxc-project/oxc/pull/3255) - shorten eslint/eqeqeq rule error message's span by [@​mysteryven](https://togithub.com/mysteryven) in [https://github.com/oxc-project/oxc/pull/3193](https://togithub.com/oxc-project/oxc/pull/3193) - fix(parser): correctly parse cls.fn = x by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/oxc-project/oxc/pull/3208](https://togithub.com/oxc-project/oxc/pull/3208) #### New Contributors - [@​KubaJastrz](https://togithub.com/KubaJastrz) made their first contribution in [https://github.com/oxc-project/oxc/pull/3167](https://togithub.com/oxc-project/oxc/pull/3167) - [@​1zumii](https://togithub.com/1zumii) made their first contribution in [https://github.com/oxc-project/oxc/pull/3220](https://togithub.com/oxc-project/oxc/pull/3220) **Full Changelog**: https://github.com/oxc-project/oxc/compare/oxlint_v0.3.2...oxlint_v0.3.3 ### [`v0.3.3`](https://togithub.com/oxc-project/oxc/releases/tag/oxlint_v0.3.3): oxlint v0.3.3 [Compare Source](https://togithub.com/oxc-project/oxc/compare/a7940868c6e66d16814ebef5c8dbbfd9b948a0cd...6149e49ef79a22004e36820c81afcb0c755fcc81) #### What's Changed ##### Features - add `--symlinks` to allow symbolic walking by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3244](https://togithub.com/oxc-project/oxc/pull/3244) - add `--format github` for github check annotation by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3191](https://togithub.com/oxc-project/oxc/pull/3191) - change the category of all react-perf rules to perf by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/oxc-project/oxc/pull/3243](https://togithub.com/oxc-project/oxc/pull/3243) - remove deprecated eslint v9 rules `no-return-await` and `no-mixed-operators` by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3188](https://togithub.com/oxc-project/oxc/pull/3188) - move prefer-node-protocol to restriction by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3171](https://togithub.com/oxc-project/oxc/pull/3171) ##### New Rules - react/rules-of-hooks by [@​rzvxa](https://togithub.com/rzvxa) in [https://github.com/oxc-project/oxc/pull/3071](https://togithub.com/oxc-project/oxc/pull/3071) - eslint/radix by [@​KubaJastrz](https://togithub.com/KubaJastrz) in [https://github.com/oxc-project/oxc/pull/3167](https://togithub.com/oxc-project/oxc/pull/3167) - eslint/no-new-native-nonconstructor by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3187](https://togithub.com/oxc-project/oxc/pull/3187) - eslint/unicode-bom by [@​jelly](https://togithub.com/jelly) in [https://github.com/oxc-project/oxc/pull/3239](https://togithub.com/oxc-project/oxc/pull/3239) - eslint/no-empty-function rule by [@​jelly](https://togithub.com/jelly) in [https://github.com/oxc-project/oxc/pull/3181](https://togithub.com/oxc-project/oxc/pull/3181) - eslint-plugin-next/no-duplicate-head by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3174](https://togithub.com/oxc-project/oxc/pull/3174) - eslint-plugin-next/no-page-custom-font by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/oxc-project/oxc/pull/3185](https://togithub.com/oxc-project/oxc/pull/3185) - eslint-plugin-next/no-styled-jsx-in-document by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/oxc-project/oxc/pull/3184](https://togithub.com/oxc-project/oxc/pull/3184) - unicorn/no-anonymous-default-export by [@​1zumii](https://togithub.com/1zumii) in [https://github.com/oxc-project/oxc/pull/3220](https://togithub.com/oxc-project/oxc/pull/3220) ##### Bug Fixes - improve `prefer-string-starts-ends-with` rule by [@​camc314](https://togithub.com/camc314) in [https://github.com/oxc-project/oxc/pull/3176](https://togithub.com/oxc-project/oxc/pull/3176) - import/export: improve multiple exports error message by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/oxc-project/oxc/pull/3160](https://togithub.com/oxc-project/oxc/pull/3160) - import/named: handle `import { default as foo }` by [@​Boshen](https://togithub.com/Boshen) in [https://github.com/oxc-project/oxc/pull/3255](https://togithub.com/oxc-project/oxc/pull/3255) - shorten eslint/eqeqeq rule error message's span by [@​mysteryven](https://togithub.com/mysteryven) in [https://github.com/oxc-project/oxc/pull/3193](https://togithub.com/oxc-project/oxc/pull/3193) - fix(parser): correctly parse cls.fn = x by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/oxc-project/oxc/pull/3208](https://togithub.com/oxc-project/oxc/pull/3208) #### New Contributors - [@​KubaJastrz](https://togithub.com/KubaJastrz) made their first contribution in [https://github.com/oxc-project/oxc/pull/3167](https://togithub.com/oxc-project/oxc/pull/3167) - [@​1zumii](https://togithub.com/1zumii) made their first contribution in [https://github.com/oxc-project/oxc/pull/3220](https://togithub.com/oxc-project/oxc/pull/3220) **Full Changelog**: https://github.com/oxc-project/oxc/compare/oxlint_v0.3.2...oxlint_v0.3.3 ### [`v0.3.2`](https://togithub.com/oxc-project/oxc/releases/tag/oxlint_v0.3.2): oxlint v0.3.2 [Compare Source](https://togithub.com/oxc-project/oxc/compare/99d46f9e489663935780f434f52711787ff1de19...a7940868c6e66d16814ebef5c8dbbfd9b948a0cd) #### What's Changed [Oxlint Import Plugin Alpha Release](https://oxc-project.github.io/blog/2024-05-04-import-plugin-alpha.html) - feat(linter): [@​typescript-eslint/prefer-literal-enum-member](https://togithub.com/typescript-eslint/prefer-literal-enum-member) by [@​kaykdm](https://togithub.com/kaykdm) in [https://github.com/oxc-project/oxc/pull/3134](https://togithub.com/oxc-project/oxc/pull/3134) - feat(linter): add more "ban-ts-comment" test cases. by [@​woai3c](https://togithub.com/woai3c) in [https://github.com/oxc-project/oxc/pull/3107](https://togithub.com/oxc-project/oxc/pull/3107) - feat(linter): eslint-plugin-jest/require-hook by [@​eryue0220](https://togithub.com/eryue0220) in [https://github.com/oxc-project/oxc/pull/3110](https://togithub.com/oxc-project/oxc/pull/3110) - feat(linter): eslint/no-await-in-loop by [@​woai3c](https://togithub.com/woai3c) in [https://github.com/oxc-project/oxc/pull/3070](https://togithub.com/oxc-project/oxc/pull/3070) - feat(linter): typescript-eslint/prefer-enum-initializers by [@​todor-a](https://togithub.com/todor-a) in [https://github.com/oxc-project/oxc/pull/3097](https://togithub.com/oxc-project/oxc/pull/3097) - feat(linter/jsdoc): Implement `implements-on-classes` rule by [@​leaysgur](https://togithub.com/leaysgur) in [https://github.com/oxc-project/oxc/pull/3081](https://togithub.com/oxc-project/oxc/pull/3081) - feat(linter/jsdoc): Implement check-tag-names rule by [@​leaysgur](https://togithub.com/leaysgur) in [https://github.com/oxc-project/oxc/pull/3029](https://togithub.com/oxc-project/oxc/pull/3029) - feat(linter/jsdoc): Implement no-defaults rule by [@​leaysgur](https://togithub.com/leaysgur) in [https://github.com/oxc-project/oxc/pull/3098](https://togithub.com/oxc-project/oxc/pull/3098) - feat(linter/jsdoc): Implement require-yields rule by [@​leaysgur](https://togithub.com/leaysgur) in [https://github.com/oxc-project/oxc/pull/3150](https://togithub.com/oxc-project/oxc/pull/3150) - feat(linter/jsdoc): Support settings.ignore(Private|Internal) by [@​leaysgur](https://togithub.com/leaysgur) in [https://github.com/oxc-project/oxc/pull/3147](https://togithub.com/oxc-project/oxc/pull/3147) #### New Contributors - [@​vsn4ik](https://togithub.com/vsn4ik) made their first contribution in [https://github.com/oxc-project/oxc/pull/3118](https://togithub.com/oxc-project/oxc/pull/3118) **Full Changelog**: https://github.com/oxc-project/oxc/compare/oxlint_v0.3.1...oxlint_v0.3.2

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.