From 3becb0be9aa890669e5a6addfa219e758af9d212 Mon Sep 17 00:00:00 2001 From: Nathan Gendron Date: Wed, 18 Sep 2024 15:13:48 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Show=20license=20in=20docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .markdownlint.yaml | 3 ++- LICENSE.txt => LICENSE.md | 0 typedoc.json | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) rename LICENSE.txt => LICENSE.md (100%) diff --git a/.markdownlint.yaml b/.markdownlint.yaml index 532f3e3..a156b02 100644 --- a/.markdownlint.yaml +++ b/.markdownlint.yaml @@ -1,6 +1,7 @@ default: true +first-line-h1: false line-length: false -no-inline-html: false no-hard-tabs: code_blocks: false spaces_per_tab: 2 +no-inline-html: false diff --git a/LICENSE.txt b/LICENSE.md similarity index 100% rename from LICENSE.txt rename to LICENSE.md diff --git a/typedoc.json b/typedoc.json index 470158a..f723f9a 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,4 +1,5 @@ { "$schema": "https://typedoc.org/schema.json", - "entryPoints": ["./src/index.ts"] + "entryPoints": ["./src/index.ts"], + "projectDocuments": ["LICENSE.md"] }