Skip to content

Update Linting#3

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/linting
Open

Update Linting#3
renovate[bot] wants to merge 1 commit intomainfrom
renovate/linting

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate bot commented Mar 18, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
lint-staged 15.2.1015.5.2 age confidence
oxlint (source) 0.9.30.18.1 age confidence

Release Notes

lint-staged/lint-staged (lint-staged)

v15.5.2

Compare Source

Patch Changes

v15.5.1

Compare Source

Patch Changes
  • #​1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    

v15.5.0

Compare Source

Minor Changes
  • #​1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.
Example with Prettier

By default Prettier prefers double quotes.

Previously
  1. Stage file.js with only double quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
  5. Commit was not done, original state is restored and single quotes ' are staged
Now
  1. Stage file.js with only double-quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails and cancels the commit
  5. Commit was not done, and there are no staged changes

v15.4.3

Compare Source

Patch Changes
  • #​1512 cbfed1d Thanks @​tarik02! - Adjust TypeScript types for the default export so that it can be used as a value without error TS2693.

v15.4.2

Compare Source

Patch Changes
  • #​1509 8827ebf Thanks @​iiroj! - Change lint-staged's dependencies to use caret (^) ranges instead of tilde (~). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.

v15.4.1

Compare Source

Patch Changes

v15.4.0

Compare Source

Minor Changes
  • #​1500 a8ec1dd Thanks @​iiroj! - Lint-staged now provides TypeScript types for the configuration and main Node.js API. You can use the JSDoc syntax in your JS configuration files:

    /**
     * @​filename: lint-staged.config.js
     * @​type {import('lint-staged').Configuration}
     */
    export default {
      '*': 'prettier --write',
    }

    It's also possible to use the .ts file extension for the configuration if your Node.js version supports it. The --experimental-strip-types flag was introduced in Node.js v22.6.0 and unflagged in v23.6.0, enabling Node.js to execute TypeScript files without additional configuration.

    export NODE_OPTIONS="--experimental-strip-types"
    
    npx lint-staged --config lint-staged.config.ts
Patch Changes

v15.3.0

Compare Source

Minor Changes
  • #​1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #​1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Compare Source

Patch Changes
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

oxc-project/oxc (oxlint)

v0.18.1: oxlint v0.18.1

Compare Source

[0.18.1] - 2025-06-09

🐛 Bug Fixes
  • 6d68568 linter: False negative in typescript/array-type (#​11574) (camc314)
  • 6a856a0 linter/no-magic-numbers: Fix typo in error message (#​11560) (overlookmotel)
  • 3952e01 linter: False negative in jsx-a11y/aria-role (#​11547) (camc314)
  • b0e3e08 linter: Misplaced quote in jsx-curly-brace-presence test case (#​11546) (camc314)
  • a833ed1 linter: Misplaced quote in anchor-is-valid test case (#​11545) (camc314)
  • 4e53b80 linter: Misplaced backtick in exhaustive-deps test case (#​11544) (camc314)
  • e8a04b6 linter: Misplaced backtick in no-object-constructor test case (#​11543) (camc314)
  • 65311d0 linter: Remove duplicate rule/scope from diagnostic (#​11531) (camc314)
🚜 Refactor
📚 Documentation
⚡ Performance
  • 7bf25cb language_server: Transform MessageWithPosition to Diagnostic with less allocations (#​11561) (Sysix)

v0.18.0: oxlint v0.18.0

Compare Source

[0.18.0] - 2025-06-06

  • bd9dd88 linter: [BREAKING] Add more info to json reporter (#​11524) (camc314)
Features
  • 825d40c linter: Fix casing in unicorn/no-useless-promise-resolve-reject (#​11528) (camc314)
  • 2faee3d linter: Fix grammer in react/exhaustive-deps (#​11527) (camc314)
Bug Fixes
  • 1a71d7c linter: Misplaced backtick in unicorn/no-array-for-each diagnostic (#​11529) (camc314)
  • 7430b14 linter: Grammer in jest/valid-expect diagnostic (#​11522) (camc314)
  • b92ac41 linter: Grammer in eslint/no-redeclare diagnostic (#​11521) (camc314)
  • 17883e3 linter: Improve eslint/no-unsafe-negation diagnostic (#​11520) (camc314)
  • 8c89937 linter: Improve eslint/no-shadow-restricted-names diagnostic (#​11519) (camc314)
  • 3f0d889 linter: Add missing article to oxc/bad-array-method-on-arguments diagnostic (#​11518) (camc314)
  • cf0c24c linter: Improve message in react/prefer-es6-class diagnostic (#​11516) (camc314)
  • 91855df linter: Fix message in react/rules-of-hooks diagnostic (#​11515) (camc314)
  • b272194 linter: Misplaced backtick in jest/no-conditional-expect diagnostic (#​11514) (camc314)
  • 3403303 linter: Misplaced backtick in unicorn/prefer-dom-node-dataset diagnostic (#​11513) (camc314)
  • d5ca872 linter: Misplaced backtick in eslint/radix diagnostic (#​11512) (camc314)
  • 2dcf8be linter: Improve diagnostic message when function name is referenced (#​11509) (camc314)
  • 0de0c9c linter: Improve diagnostic message for no-unsafe-declaration-merging (#​11508) (camc314)
  • 0946dac linter: Correctly inherit categories when plugins are enabled (#​11353) (Cameron)
  • 510c1c6 linter: Add missing allowArrowFunctions option for eslint/func-style (#​11455) (yefan)
  • c77787c linter: Improve eslint/no-loss-of-precision (#​11437) (magic-akari)
  • 11d4523 linter: False positive in react/exhaustive-deps (#​11438) (camc314)
  • 616b613 linter/switch-case-braces: Align the logic with unicorn (#​11405) (shulaoda)
Refactor
  • db0b099 language_server: Convert only once uri to path when creating ServerLinter (#​11503) (Sysix)
  • ccceb52 language_server: Simplify workspace/didChangeConfiguration call (#​11462) (Sysix)
  • 0fdc51e linter: Simplify OxlintRules::override_rules (#​11510) (camc314)
Testing

v0.17.0: oxlint v0.17.0

Compare Source

[0.17.0] - 2025-05-30

  • ead5309 linter: [BREAKING] Remove react from default plugin set (#​11382) (camc314)
Features
  • 2d25bd8 linter: Remove unicorn/no-for-loop over typescript/prefer-for-of (#​11354) (camc314)
  • bbb7eb1 linter: Add auto-fix to react/forward-ref-uses-ref (#​11342) (yefan)
  • 590c27b linter: Add auto-fix to unicorn/no-await-expression-member (#​11306) (yefan)
  • 7824f01 linter: Implement suggestion for jsx/no-useless-fragment (#​10800) (Cam McHenry)
  • 2083d33 linter/language_server: Add second editor suggestion for react/forward-ref-uses-ref (#​11375) (Sysix)
Bug Fixes
  • f6424dd linter: Reflect react plugin is disabled by default in cli (#​11397) (camc314)
  • 25ecbfe linter: Remove use of FrameworkFlags::React to decide whether rules should run (#​11383) (camc314)
  • 0d240e4 linter: False positive in react/exhaustive-deps with default formal parameter (#​11395) (camc314)
  • c91697e linter: Fix panic in multi byte char in TryFrom aria (#​11350) (camc314)
  • 9798ef1 linter: Stack overflow in no-async-endpoint-handlers (#​11317) (camc314)
  • 348ad97 linter: Skip no-unused-vars on astro files (#​11303) (camc314)
  • 183d7f0 linter: Make jest/no-large-snapshots error easier to comprehend (#​11294) (Ulrich Stark)
  • 4e606a5 linter: Improve jest/no-large-snapshots (#​11291) (Ulrich Stark)
  • 14f790f linter: Improve jest/no-restricted-matchers (#​11292) (Ulrich Stark)
  • a2c82be linter/block-scoped-var: Better diagnostic messages (#​11290) (DonIsaac)
  • 19772e5 linter/no-unused-vars: Panic when variable is redeclared as function in same scope (#​11280) (Dunqing)
  • 7af5bb1 oxc_language_server: Include save option for text document sync capability (#​11297) (Nicholas Rayburn)
Performance
  • 0ed6c1a language_server: Use Arc<RwLock> instead of Mutex for workspace workers (#​11328) (Sysix)
  • a0ee946 linter: Reduce code size in globals (#​11333) (shulaoda)
  • c90c5e9 linter/no-unused-vars: Simplify checking self call usage (#​11281) (Dunqing)
Documentation
Refactor
  • 42738f0 linter: Shorten code of match arms (#​11389) (Ulrich Stark)
  • 8a34447 linter: Improve unicorn/text-encoding-identifier-case (#​11386) (shulaoda)
  • eaa605e linter: Avoid some Arc::clone in linter runtime (#​11388) (Boshen)
  • 1cd8b9c linter: Fixes in react/forward-ref-uses-ref are suggestions (#​11376) (Sysix)
  • 50ef691 linter: Add diagnostics_with_multiple_fixes to LintContext (#​11357) (Sysix)
  • 606bb34 linter: Accept PossibleFixes instead of Fix for Messages (#​11295) (Sysix)
  • 042a3f3 linter: Use PossibleFixes instead of Option<Fix> (#​11284) (Sysix)
  • ffcfb46 linter: Improve unicorn/throw-new-error (#​11364) (shulaoda)
  • 8fb55c3 linter: Cleanup docs and simplify code of eslint/no-fallthrough (#​11331) (Ulrich Stark)
  • e2f0f0a linter: Improve docs and simplify code of eslint/no-duplicate-imports (#​11320) (Ulrich Stark)
  • b53b053 linter: Simplify accessing span of NameSpan (#​11305) (Ulrich Stark)
  • 4bc2650 linter: Improve eslint/no-void (#​11285) (shulaoda)
Styling
  • 49b664c linter: Remove needless newline in declare_oxc_lint (#​11400) (camc314)
Testing
  • c4f64aa linter: Explicitly disable correctness for clarity (#​11327) (camc314)
  • a404b2c linter: eslint/no-duplicate-imports shouldn't report the same span (#​11324) (Ulrich Stark)

v0.16.12

Compare Source

Features
  • 6a7018e linter: Generate stricter json schema for lint plugins (#​11219) (camc314)
Bug Fixes

v0.16.11: oxlint v0.16.11

Compare Source

[0.16.11] - 2025-05-16

Features
  • 078bf0b language_server: Better fallback handling when passing invalid Options values (#​10930) (Sysix)
  • be7f7e1 language_server/editor: Support multi workspace folders (#​10875) (Sysix)
  • eef93b4 linter: Add import/no-unassigned-import (#​10970) (yefan)
  • cc0112f linter: No-unused-vars add setting for reportVarsOnlyUsedAsTypes (#​11009) (camc314)
  • 17e49c3 linter: Implement configuration and checking loops for eslint/no_constant_condition (#​10949) (Ulrich Stark)
  • 21117ac linter: Implement react/forbid-elements (#​10928) (Thomas BOCQUEZ)
  • 466c24a linter: Add gitlab reporter output format (#​10927) (Connor Pearson)
  • a064082 linter: Add import/consistent-type-specifier-style rule (#​10858) (yefan)
  • 4733b52 linter/no-extraneous-class: Add conditional fixer (#​10798) (DonIsaac)
Bug Fixes
  • 87bf2a8 editor: Send only workspace/didChangeConfiguration when some workspace configuration is effected (#​11017) (Sysix)
  • ed5708d editor: Detect all workspaces config path changes (#​11016) (Sysix)
  • 89cc21b language_server: Normalize oxlintrc config path (#​10982) (Sysix)
  • c52a9ba linter: Fix plugins inside overrides not being applied (#​11057) (camc314)
  • b12bd48 linter: Fix rule config not being correctly applied (#​11055) (camc314)
  • 9a368be linter: False negative in no-restriced-imports with patterns and side effects (#​11027) (camc314)
  • 8c2cfbc linter: False negative in no-restricted-imports (#​11026) (camc314)
  • 8956870 linter: False positive in no-unused-vars (#​11002) (camc314)
  • 33a60d2 linter: Skip eslint/no-redeclare when running on modules (#​11004) (camc314)
  • 39063ce linter: Reword diagnostic message for no-control-regex (#​10993) (camc314)
  • 9eedb58 linter: False positive with negative matches in no-restricted-imports (#​10976) (camc314)
  • 10e77d7 linter: Improve diagnostics for no-control-regex (#​10959) (camc314)
  • 0961296 linter: Add gitlab to linter --help docs (#​10932) (camc314)
  • 82889ae linter/no-extraneous-class: Improve docs, reporting and code refactor (#​10797) (DonIsaac)
  • 11c34e7 linter/no-img-element: Improve diagnostic and docs (#​10908) (DonIsaac)
  • 584d8b9 napi: Enable mimalloc no_opt_arch feature on linux aarch64 (#​11053) (Boshen)
  • 126ae75 semantic: Distinguish class private elements (#​11044) (magic-akari)
  • 773d0de semantic: Correctly handle nested brackets in jsdoc parsing (#​10922) (camc314)
  • b215b6c semantic: Dont parse @ as jsdoc tags inside [/] (#​10919) (camc314)
Documentation
Refactor
  • 3cc1466 language_server: New configuration structure for initialize and workspace/didChangeConfiguration (#​10890) (Sysix)
  • bd2ef7d language_server: Use Arc for diagnostic_report_map (#​10940) (Sysix)
  • bb999a3 language_server: Avoid cloning linter by taking reference in LintService (#​10907) (Ulrich Stark)
  • d1b0c83 linter: Remove overrides index vec (#​11058) (camc314)
  • 7ad6cf8 linter: Store severity separately, remove RuleWithSeverity (#​11051) (camchenry)
  • e31c361 linter: Remove nested match statements in no-restricted-imports (#​10975) (camc314)
  • 6ad9d4f linter: Tidy eslint/func-names (#​10923) (camc314)
  • faf0a95 syntax: Rename NameSpaceModule to NamespaceModule (#​10917) (Dunqing)
Testing
  • 76b6b33 editor: Add tests for multi workspace folder setup (#​10904) (Sysix)

v0.16.10: oxlint v0.16.10

Compare Source

[0.16.10] - 2025-05-09

Features
  • e1bc037 language_server: Request for workspace configuration when client did not send them in initialize (#​10789) (Sysix)
  • 3bd339b language_server: Provide commands / code actions for unopened files (#​10815) (Sysix)
  • 4c62348 linter: Regex/no-useless-backreference (#​10773) (camc314)
  • d7ebdd7 linter: Add unicorn/no-unnecessary-slice-end rule (#​10826) (yefan)
Bug Fixes
  • f3cc3a2 language_server: Request client for configuration when no configuration is passed in workspace/didChangeConfiguration (#​10871) (Sysix)
  • 24fcb1e language_server: Return server version initialize response (#​10810) (Sysix)
  • 7d09973 linter: False positive with withResolvers in prefer-await-to-then (#​10896) (camc314)
  • 9b94300 linter: Mark fixer as dangerous for erasing-op (#​10868) (camc314)
  • ae70cc1 linter: Add missing option to no-shadow-restricted-names (#​10827) (camc314)
  • b2c287f linter/no-unused-vars: Fixer cannot delete usused for in/of iterators (#​10824) (DonIsaac)
  • 5ce0a68 linter/no-unused-vars: Recognize parameters used in await/yield expressions within comma expressions (#​10808) (magic-akari)
Performance
  • 00ffbc9 language_server: Do not request for configuration when all workers are ready (#​10897) (Sysix)
  • 96cca22 language_server: Use simdutf8 when reading files from file system (#​10814) (Sysix)
Documentation
  • efaadd3 linter: Fix a few incorrect backticks in no_restricted_imports (#​10914) (Boshen)
  • ccda8f0 linter: Improve no-plusplus docs (#​10885) (Peter Cardenas)
  • 5f15809 linter: Improve docs for jsdoc/require-property (#​10705) (camc314)
Refactor
  • 553ab5b language_server: Remove OnceCell from WorkspaceWorker.root_uri (#​10898) (Sysix)
  • f43fd18 language_server: Move the initialization of ServerLinter into a separate call (#​10776) (Sysix)
  • 39e0463 language_server: Move nested_configs to ServerLinter (#​10775) (Sysix)
  • 9ec13f6 language_server: Move gitignore_glob to ServerLinter (#​10762) (Sysix)
  • 3d47159 language_server: Use IsolatedLintHandlerFileSystem (#​10830) (Sysix)
  • 3d794f6 language_server: Move functions related to ServerLinter to ServerLinter (#​10761) (Sysix)
  • 79819cc linter: Move around some config store logic (#​10861) (camc314)
  • e132aba linter: Extract nested config searching to a fn (#​10860) (camc314)
  • 243c247 linter: Able to use custom file system in runtime (#​10828) (Sysix)
  • efb4fb8 oxlint: Avoid result unwrap (#​10836) (camc314)
Testing
  • 47b946d linter: Use TesterFileSystem for Runtimes filesystem (#​10829) (Sysix)

v0.16.9: oxlint v0.16.9

Compare Source

[0.16.9] - 2025-05-03

Features
Bug Fixes
  • 4ee95ec editor: Activate extension when astro files are opened too (#​10725) (Sysix)
  • 46665bd langage_server: Fix initialize nested configs (#​10698) (Sysix)
  • eb3f37c language_server: On configuration change, send updated diagnostics to the client (#​10764) (Sysix)
  • 8c499c6 linter: Fix panic when doing code gen on regexp (#​10769) (camc314)
  • 8e99abf linter: Fix grammer in no unused vars diagnostic msg (#​10770) (camc314)
  • b38338a linter: Make require post message target origin a fixer a suggestion (#​10754) (camc314)
  • 48c542d linter: Skip linting vue <script> where lang is not js / ts (#​10740) (Boshen)
  • c9575f6 linter: Fix false positive in react/exhaustive deps (#​10727) (camc314)
  • d8d8f64 linter: Shorten span of promise/prefer-await-to-then (#​10717) (camc314)
  • a88e349 linter: Mark isNan and isFinite as dangerous fixes in unicorn/prefer-number-properties (#​10706) (Sysix)
  • f4ab05f linter: Panic in unicorn/no-useless-spread (#​10715) (camc314)
  • 06f1717 linter: False positive in no unused vars when importing value used as type (#​10690) (camc314)
  • 746b318 linter: False positive in typescript/explicit-function-return-type with satisfies (#​10668) (camc314)
  • cce1043 linter: False positive in typescript/explicit-function-return-type (#​10667) (camc314)
  • c89da93 linter: False positive in eslint/curly on windows (#​10671) (camc314)
  • 374e19e linter: False positive in react/jsx-curly-brace-presence (#​10663) (camc314)
  • e7c2b32 linter: Move consistent-assert to pedantic (#​10665) (camc314)
  • 344ef88 linter: False positive in eslint/no-unused-vars when calling inside sequence expression (#​10646) (Ulrich Stark)
  • 98bcd5f lsp: Incorrect quick fix offset in vue files (#​10742) (camc314)
Documentation
Refactor
Testing

v0.16.8: oxlint v0.16.8

Compare Source

[0.16.8] - 2025-04-27

Features
  • 53394a7 linter: Add auto-fix for eslint/require-await (#​10624) (yefan)
  • 6908bc3 linter: Add autofix for react/self-closing-comp (#​10512) (x6eull)
  • e228840 parser: Fast forward lexer to EOF if errors are encountered (#​10579) (Boshen)
Bug Fixes
  • 966fb03 editor: Fix memory leaks when server or watchers restarted (#​10628) (Sysix)
  • f3eac51 language_server: Fix max integer values for range position (#​10623) (Alexander S.)
  • d309e07 language_server: Fix panics when paths contains specials characters like [ or ] (#​10622) (Alexander S.)
  • 91ce77a language_server: Temporary ignore tests that panic on Windows (#​10583) (Yuji Sugiura)
  • 723b4c6 linter: Cross_module of LintService not being enabled despite enabled import plugin (#​10597) (Ulrich Stark)
  • 39adefe linter: Handle re-exporting of type correctly in import/no-cycle (#​10606) (Ulrich Stark)
  • e67901b linter: Incorrect fix for prefer start ends with (#​10533) (camc314)
  • 7c85ae7 linter/no-empty-function: Support 'allow' option (#​10605) (Don Isaac)
  • 9a02066 oxlint: Current dir as arg (#​9382) (Ben Jones)
  • a9785e3 parser,linter: Consider typescript declarations for named exports (#​10532) (Ulrich Stark)
Performance
  • 3c27d0d editor: Avoid sending workspace/didChangeConfiguration request when the server needs a restarts (#​10550) (Sysix)
Refactor
  • e903ba2 editor: Split Config to VSCodeConfig and WorkspaceConfig (#​10572) (Sysix)
  • f6c6969 language_server: Make linter independent of Backend (#​10497) (Sysix)
  • db05a15 language_server: Do not request for worspace configuration when the client does not support it (#​10507) (Sysix)
  • 9f9e0e5 language_server: Move code actions into own file (#​10479) (Sysix)
Testing

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update dependency oxlint to v0.2.14 Update dependency oxlint to v0.2.15 Mar 31, 2024
@renovate renovate bot force-pushed the renovate/linting branch from 1a9d506 to 19d87c5 Compare March 31, 2024 02:40
@renovate renovate bot force-pushed the renovate/linting branch from 19d87c5 to b1b20c1 Compare April 9, 2024 23:53
@renovate renovate bot changed the title Update dependency oxlint to v0.2.15 Update dependency oxlint to v0.2.16 Apr 9, 2024
@renovate renovate bot force-pushed the renovate/linting branch from b1b20c1 to 438700e Compare April 12, 2024 23:48
@renovate renovate bot changed the title Update dependency oxlint to v0.2.16 Update dependency oxlint to v0.2.17 Apr 12, 2024
@renovate renovate bot changed the title Update dependency oxlint to v0.2.17 Update dependency oxlint to v0.2.18 Apr 19, 2024
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from 644461c to 7d3e8e7 Compare April 22, 2024 05:44
@renovate renovate bot changed the title Update dependency oxlint to v0.2.18 Update dependency oxlint to v0.3.0 Apr 22, 2024
@renovate renovate bot force-pushed the renovate/linting branch from 7d3e8e7 to 568c9ac Compare April 24, 2024 05:58
@renovate renovate bot changed the title Update dependency oxlint to v0.3.0 Update dependency oxlint to v0.3.1 Apr 24, 2024
@renovate renovate bot changed the title Update dependency oxlint to v0.3.1 Update dependency oxlint to v0.3.1 - autoclosed May 3, 2024
@renovate renovate bot closed this May 3, 2024
@renovate renovate bot deleted the renovate/linting branch May 3, 2024 23:49
@renovate renovate bot changed the title Update dependency oxlint to v0.3.1 - autoclosed Update dependency oxlint to v0.3.1 May 5, 2024
@renovate renovate bot restored the renovate/linting branch May 5, 2024 05:36
@renovate renovate bot reopened this May 5, 2024
@renovate renovate bot force-pushed the renovate/linting branch from 568c9ac to d3e7d7e Compare May 5, 2024 05:37
@renovate renovate bot changed the title Update dependency oxlint to v0.3.1 Update dependency oxlint to v0.3.2 May 5, 2024
@renovate renovate bot force-pushed the renovate/linting branch from d3e7d7e to 9209cfd Compare May 13, 2024 20:53
@renovate renovate bot changed the title Update dependency oxlint to v0.3.2 Update dependency oxlint to v0.3.4 May 13, 2024
@renovate renovate bot force-pushed the renovate/linting branch from 9209cfd to 3d40288 Compare May 22, 2024 20:55
@renovate renovate bot changed the title Update dependency oxlint to v0.3.4 Update Linting May 22, 2024
@renovate renovate bot force-pushed the renovate/linting branch 3 times, most recently from a44071a to 4c4a70a Compare May 29, 2024 02:29
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from f7d157e to bf0f27d Compare June 13, 2024 02:59
@renovate renovate bot force-pushed the renovate/linting branch 3 times, most recently from 2db5444 to fadedb3 Compare August 16, 2024 02:39
@renovate renovate bot force-pushed the renovate/linting branch 3 times, most recently from eada424 to 6e5c95f Compare August 29, 2024 17:40
@renovate renovate bot force-pushed the renovate/linting branch 3 times, most recently from e989bbf to 54a663f Compare September 7, 2024 05:42
@renovate renovate bot changed the title Update Linting Update Linting - autoclosed Sep 10, 2024
@renovate renovate bot closed this Sep 10, 2024
@renovate renovate bot deleted the renovate/linting branch September 10, 2024 18:40
@renovate renovate bot changed the title Update Linting - autoclosed Update Linting Sep 14, 2024
@renovate renovate bot restored the renovate/linting branch September 14, 2024 08:42
@renovate renovate bot reopened this Sep 14, 2024
@renovate renovate bot force-pushed the renovate/linting branch from 54a663f to 36aa50c Compare September 15, 2024 11:41
@renovate renovate bot changed the title Update Linting Update dependency oxlint to v0.9.5 Sep 15, 2024
@renovate renovate bot force-pushed the renovate/linting branch from 36aa50c to 6e35d4a Compare September 18, 2024 05:18
@renovate renovate bot changed the title Update dependency oxlint to v0.9.5 Update dependency oxlint to v0.9.6 Sep 18, 2024
@renovate renovate bot force-pushed the renovate/linting branch from 6e35d4a to 893cb71 Compare September 25, 2024 05:43
@renovate renovate bot changed the title Update dependency oxlint to v0.9.6 Update dependency oxlint to v0.9.8 Sep 25, 2024
@renovate renovate bot force-pushed the renovate/linting branch from 893cb71 to 156c749 Compare September 28, 2024 05:54
@renovate renovate bot changed the title Update dependency oxlint to v0.9.8 Update dependency oxlint to v0.9.9 Sep 28, 2024
@renovate renovate bot force-pushed the renovate/linting branch from 156c749 to da57aae Compare October 9, 2024 05:22
@renovate renovate bot changed the title Update dependency oxlint to v0.9.9 Update dependency oxlint to v0.9.10 Oct 9, 2024
@renovate renovate bot force-pushed the renovate/linting branch from da57aae to ee6d9c5 Compare October 19, 2024 08:49
@renovate renovate bot changed the title Update dependency oxlint to v0.9.10 Update dependency oxlint to v0.10.0 Oct 19, 2024
@renovate renovate bot force-pushed the renovate/linting branch from ee6d9c5 to 3b90481 Compare October 22, 2024 23:54
@renovate renovate bot changed the title Update dependency oxlint to v0.10.0 Update dependency oxlint to v0.10.2 Oct 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants