From d7bef27f52cb0857a5db9fb3670f42fac99e5f2d Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Sat, 10 Feb 2024 22:16:33 +0100 Subject: [PATCH] better JSDoc config --- .jsdoc.conf.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.jsdoc.conf.json b/.jsdoc.conf.json index e7d5e38..9c02b16 100644 --- a/.jsdoc.conf.json +++ b/.jsdoc.conf.json @@ -1,7 +1,10 @@ { "source": { "include": ["."], - "includePattern": ".+\\.js(doc|x)?$", - "excludePattern": "node_modules" + "exclude": [ + "node_modules", + "commands/examples" + ], + "includePattern": ".+\\.js(doc|x)?$" } }