.markdownlint: Add ignore and settings

Add .markdownlint.yaml for mdlint settings and add ignores (build
outputs and external dependencies).

Signed-off-by: Sherry Fan <sherryfan@microsoft.com>
This commit is contained in:
Sherry Fan 2026-01-21 10:14:45 -08:00 committed by mergify[bot]
parent f1e6f26e92
commit 90cb1661bd
2 changed files with 21 additions and 0 deletions

15
.markdownlint.yaml Normal file
View file

@ -0,0 +1,15 @@
## @file
# markdownlint configuration
#
# Copyright (c) Microsoft Corporation.
# SPDX-License-Identifier: BSD-2-Clause-Patent
##
# Rules can be found here: https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
# Config info: https://github.com/DavidAnson/markdownlint#configuration
{
"default": true,
"MD013": {"line_length": 120, "code_blocks": false, "tables": false},
"MD033": {"allowed_elements": ["br"]}
}

6
.markdownlintignore Normal file
View file

@ -0,0 +1,6 @@
# Ignore build directory
/Build/
# Ignore external dependencies
*_extdep/
UnitTestFrameworkPkg/Library/SubhookLib/