From 407f548a7120eaf1c62298f3330693b7f631e703 Mon Sep 17 00:00:00 2001 From: Boshen <1430279+Boshen@users.noreply.github.com> Date: Tue, 6 Jan 2026 09:51:39 +0000 Subject: [PATCH 1/2] Release 1.38.0 --- .../guide/usage/linter/rules/typescript/await-thenable.md | 4 ++-- src/docs/guide/usage/linter/rules/version.data.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/docs/guide/usage/linter/rules/typescript/await-thenable.md b/src/docs/guide/usage/linter/rules/typescript/await-thenable.md index 5d4bc2a5fac..0fe7e4d23bd 100644 --- a/src/docs/guide/usage/linter/rules/typescript/await-thenable.md +++ b/src/docs/guide/usage/linter/rules/typescript/await-thenable.md @@ -32,7 +32,7 @@ While it is valid JavaScript to await a non-Promise-like value (it will resolve Examples of **incorrect** code for this rule: -``` +```ts await 12; await (() => {}); @@ -48,7 +48,7 @@ await getPromise; Examples of **correct** code for this rule: -``` +```ts await Promise.resolve("value"); await Promise.reject(new Error()); diff --git a/src/docs/guide/usage/linter/rules/version.data.js b/src/docs/guide/usage/linter/rules/version.data.js index 8a6c7b29183..25bba04d127 100644 --- a/src/docs/guide/usage/linter/rules/version.data.js +++ b/src/docs/guide/usage/linter/rules/version.data.js @@ -1,5 +1,5 @@ export default { load() { - return "659c23e2dfb7711ea1f5e2c89a4d30659b492ed2"; + return "3b4aced06427fc6111f334ea8b4d00a5b949fdc6"; }, }; From 7354648ef3cfb3b4e3b3d6f732a497e2697f9100 Mon Sep 17 00:00:00 2001 From: Cameron Clark Date: Tue, 6 Jan 2026 10:50:34 +0000 Subject: [PATCH 2/2] u --- .../guide/usage/linter/rules/typescript/await-thenable.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/guide/usage/linter/rules/typescript/await-thenable.md b/src/docs/guide/usage/linter/rules/typescript/await-thenable.md index 0fe7e4d23bd..5d4bc2a5fac 100644 --- a/src/docs/guide/usage/linter/rules/typescript/await-thenable.md +++ b/src/docs/guide/usage/linter/rules/typescript/await-thenable.md @@ -32,7 +32,7 @@ While it is valid JavaScript to await a non-Promise-like value (it will resolve Examples of **incorrect** code for this rule: -```ts +``` await 12; await (() => {}); @@ -48,7 +48,7 @@ await getPromise; Examples of **correct** code for this rule: -```ts +``` await Promise.resolve("value"); await Promise.reject(new Error());