From 15c7fb4b4344e9ee3f52cd7f3304f697d4b3b823 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 22 Apr 2023 00:08:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20(doc-jit)=20add=20labels=20to=20?= =?UTF-8?q?urls?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .doc-jitrc | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/.doc-jitrc b/.doc-jitrc index 9def849..bf2c5b7 100644 --- a/.doc-jitrc +++ b/.doc-jitrc @@ -1,8 +1,20 @@ { "patterns": { - "**/*.vue": "https://vuejs.org/guide/introduction.html", - "**/*.test.ts": "https://v1.test-utils.vuejs.org/guides", - "**/*.store.ts": "https://pinia.vuejs.org/introduction.html", - "**/router/*.ts": "https://router.vuejs.org/" + "**/*.vue": { + "label": "VueJS documentation", + "uri": "https://vuejs.org/guide/introduction.html" + }, + "**/*.test.ts": { + "label": "Vue Test Utils documentation", + "uri": "https://v1.test-utils.vuejs.org/guides" + }, + "**/*.store.ts": { + "label": "Pinia store documentation", + "uri": "https://pinia.vuejs.org/introduction.html" + }, + "**/router/*.ts": { + "label": "Vue router documentation", + "uri": "https://router.vuejs.org/" + } } } \ No newline at end of file