From 15239813318c532aa3b4efe44f4f615cbb742c17 Mon Sep 17 00:00:00 2001 From: Maxim Srour Date: Fri, 12 Dec 2025 07:43:37 +1100 Subject: [PATCH 1/2] docs: resolve incorrect lint rule in examples --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad0089e66..e3b4410a9 100644 --- a/README.md +++ b/README.md @@ -275,7 +275,7 @@ Finally, enable all of the rules that you would like to use. "jsdoc/no-restricted-syntax": 1, "jsdoc/no-types": 1, // Recommended for TS configs "jsdoc/no-undefined-types": 1, // Recommended for non-TS configs - "jsdoc/rejct-any-type": 1, // Recommended + "jsdoc/reject-any-type": 1, // Recommended "jsdoc/reject-function-type": 1, // Recommended "jsdoc/require-asterisk-prefix": 1, "jsdoc/require-description": 1, From 1b7ebf533b7985ffb55a1e7fff3bc4e7e543a76e Mon Sep 17 00:00:00 2001 From: Maxim Srour Date: Fri, 12 Dec 2025 08:07:08 +1100 Subject: [PATCH 2/2] docs: correct typo in rule name in base docs --- .README/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.README/README.md b/.README/README.md index 94c037978..e3cee07bc 100644 --- a/.README/README.md +++ b/.README/README.md @@ -248,7 +248,7 @@ Finally, enable all of the rules that you would like to use. "jsdoc/no-restricted-syntax": 1, "jsdoc/no-types": 1, // Recommended for TS configs "jsdoc/no-undefined-types": 1, // Recommended for non-TS configs - "jsdoc/rejct-any-type": 1, // Recommended + "jsdoc/reject-any-type": 1, // Recommended "jsdoc/reject-function-type": 1, // Recommended "jsdoc/require-asterisk-prefix": 1, "jsdoc/require-description": 1,