Skip to content

Update lint dependencies#373

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/lint-dependencies
Open

Update lint dependencies#373
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/lint-dependencies

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Nov 30, 2025

This PR contains the following updates:

Package Change Age Confidence
@eslint/js (source) ^9.39.1^9.39.4 age confidence
eslint (source) ^9.39.1^9.39.4 age confidence
prettier (source) ^3.6.2^3.8.1 age confidence
typescript-eslint (source) ^8.46.3^8.57.0 age confidence

Release Notes

eslint/eslint (@​eslint/js)

v9.39.4

Compare Source

v9.39.3

Compare Source

Bug Fixes

  • 791bf8d fix: restore TypeScript 4.0 compatibility in types (#​20504) (sethamus)

Chores

v9.39.2

Compare Source

eslint/eslint (eslint)

v9.39.4

Compare Source

Bug Fixes

Documentation

Chores

v9.39.3

Compare Source

Bug Fixes

  • 791bf8d fix: restore TypeScript 4.0 compatibility in types (#​20504) (sethamus)

Chores

v9.39.2

Compare Source

prettier/prettier (prettier)

v3.8.1

Compare Source

v3.8.0

Compare Source

diff

🔗 Release note

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

typescript-eslint/typescript-eslint (typescript-eslint)

v8.57.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.56.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.56.0

Compare Source

🚀 Features
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.55.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.54.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.53.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.53.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.52.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.51.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.50.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.50.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.49.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.48.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.


Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 force-pushed the renovate/lint-dependencies branch 9 times, most recently from 272f98d to 1fb0769 Compare December 7, 2025 18:30
@renovate renovate bot changed the title Update dependency typescript-eslint to ^8.46.4 Update dependency typescript-eslint to ^8.47.0 Dec 7, 2025
@renovate renovate bot force-pushed the renovate/lint-dependencies branch from 1fb0769 to ad4dc7a Compare December 14, 2025 22:12
@renovate renovate bot changed the title Update dependency typescript-eslint to ^8.47.0 Update dependency typescript-eslint to ^8.48.0 Dec 14, 2025
@renovate renovate bot force-pushed the renovate/lint-dependencies branch from ad4dc7a to 1f47a21 Compare December 17, 2025 10:54
@renovate renovate bot changed the title Update dependency typescript-eslint to ^8.48.0 Update lint dependencies Dec 17, 2025
@renovate renovate bot force-pushed the renovate/lint-dependencies branch 7 times, most recently from 58c7bfb to 2ea3b12 Compare December 23, 2025 04:45
@renovate renovate bot force-pushed the renovate/lint-dependencies branch 4 times, most recently from 8a7c7d1 to 9e7179c Compare January 2, 2026 01:34
@renovate renovate bot force-pushed the renovate/lint-dependencies branch 3 times, most recently from 4a69002 to aca60ef Compare January 11, 2026 17:08
@renovate renovate bot force-pushed the renovate/lint-dependencies branch 2 times, most recently from cbfcf9a to 835f174 Compare January 15, 2026 10:18
@renovate renovate bot force-pushed the renovate/lint-dependencies branch 9 times, most recently from 6389e11 to 8f5c863 Compare January 26, 2026 07:53
@renovate renovate bot force-pushed the renovate/lint-dependencies branch 3 times, most recently from 425e1ac to 892ee98 Compare February 1, 2026 20:35
@renovate renovate bot force-pushed the renovate/lint-dependencies branch 3 times, most recently from 04d1654 to 048b0bf Compare February 10, 2026 18:03
@renovate renovate bot force-pushed the renovate/lint-dependencies branch 2 times, most recently from 668e088 to 52d3b6a Compare February 17, 2026 16:36
@renovate renovate bot force-pushed the renovate/lint-dependencies branch 4 times, most recently from 0d57df7 to 7ec1644 Compare March 1, 2026 20:55
@renovate renovate bot force-pushed the renovate/lint-dependencies branch 5 times, most recently from 30347e6 to 72ae6b1 Compare March 12, 2026 17:04
@renovate renovate bot force-pushed the renovate/lint-dependencies branch from 72ae6b1 to 40c020a Compare March 15, 2026 21:01
@renovate renovate bot force-pushed the renovate/lint-dependencies branch from 40c020a to 91d6312 Compare March 26, 2026 22:32
@renovate renovate bot force-pushed the renovate/lint-dependencies branch from 91d6312 to 1336311 Compare March 29, 2026 17:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants