From e6552b480e55a8e223a8fbd6d3151137e48dc415 Mon Sep 17 00:00:00 2001 From: Sean Killeen Date: Sun, 21 Jan 2024 20:24:10 -0500 Subject: [PATCH] Fix MD018 (extra spaces in heading) --- .github/linters/.markdownlint.yml | 1 - .markdownlintrc | 1 - website/src/docs/hotchocolate/v10/schema/custom-scalar-types.md | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/linters/.markdownlint.yml b/.github/linters/.markdownlint.yml index 1879c7496bf..fa2637ab0f7 100644 --- a/.github/linters/.markdownlint.yml +++ b/.github/linters/.markdownlint.yml @@ -20,7 +20,6 @@ ############### MD001: false MD013: false -MD018: false MD022: false MD024: false MD025: false diff --git a/.markdownlintrc b/.markdownlintrc index 1cb012a24fe..f3ef8212fdb 100644 --- a/.markdownlintrc +++ b/.markdownlintrc @@ -1,7 +1,6 @@ { "MD001": false, "MD013": false, - "MD018": false, "MD022": false, "MD024": false, "MD025": false, diff --git a/website/src/docs/hotchocolate/v10/schema/custom-scalar-types.md b/website/src/docs/hotchocolate/v10/schema/custom-scalar-types.md index d84ce7e2996..5e2930d23e5 100644 --- a/website/src/docs/hotchocolate/v10/schema/custom-scalar-types.md +++ b/website/src/docs/hotchocolate/v10/schema/custom-scalar-types.md @@ -73,7 +73,7 @@ This will ensure that the type inference works predictable and will by default i As I said before in most cases we do not need to do anything since Hot Chocolate has default bindings. -# Any Type +#  Any Type The `Any` scalar is a special type that can be compared to `object` in c#. Any allows us to specify any literal or return any output type.