We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df308cd commit 4b56cddCopy full SHA for 4b56cdd
scripts/validate-plugin.mjs
@@ -113,7 +113,10 @@ try {
113
"Missing SECURITY.md (vulnerability disclosure and hardening)",
114
);
115
assert(exists("LICENSE"), "Missing LICENSE");
116
- assert(exists(".node-version"), "Missing .node-version (CI / local Node alignment)");
+ assert(
117
+ exists(".node-version"),
118
+ "Missing .node-version (CI / local Node alignment)",
119
+ );
120
121
assert(exists("mcp.json"), "Missing mcp.json");
122
const mcp = readJson("mcp.json");
0 commit comments