mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
Add .markdownlint.yaml for mdlint settings and add ignores (build outputs and external dependencies). Signed-off-by: Sherry Fan <sherryfan@microsoft.com>
15 lines
446 B
YAML
15 lines
446 B
YAML
## @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"]}
|
|
}
|