From c0f58e7249ce87c0918290f9c18c82d9571214e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilherme=20Ara=C3=BAjo?= Date: Wed, 30 Jul 2025 20:31:15 -0300 Subject: [PATCH 1/2] feat: add llmDescription as allowed key --- remark-lint-nodejs-yaml-comments.js | 1 + 1 file changed, 1 insertion(+) diff --git a/remark-lint-nodejs-yaml-comments.js b/remark-lint-nodejs-yaml-comments.js index 28fec6e1..cf782cf3 100644 --- a/remark-lint-nodejs-yaml-comments.js +++ b/remark-lint-nodejs-yaml-comments.js @@ -10,6 +10,7 @@ const allowedKeys = [ "deprecated", "removed", "changes", + "llmDescription", ]; const changesExpectedKeys = ["version", "pr-url", "description"]; const VERSION_PLACEHOLDER = "REPLACEME"; From f72d31a990d5ede679089d2fafcda7bc3f9291cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilherme=20Ara=C3=BAjo?= Date: Sat, 2 Aug 2025 16:09:13 -0300 Subject: [PATCH 2/2] fix: use snack_case --- remark-lint-nodejs-yaml-comments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remark-lint-nodejs-yaml-comments.js b/remark-lint-nodejs-yaml-comments.js index cf782cf3..e9ce31ea 100644 --- a/remark-lint-nodejs-yaml-comments.js +++ b/remark-lint-nodejs-yaml-comments.js @@ -10,7 +10,7 @@ const allowedKeys = [ "deprecated", "removed", "changes", - "llmDescription", + "llm_description", ]; const changesExpectedKeys = ["version", "pr-url", "description"]; const VERSION_PLACEHOLDER = "REPLACEME";