mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
.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:
parent
f1e6f26e92
commit
90cb1661bd
2 changed files with 21 additions and 0 deletions
15
.markdownlint.yaml
Normal file
15
.markdownlint.yaml
Normal 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
6
.markdownlintignore
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Ignore build directory
|
||||
/Build/
|
||||
|
||||
# Ignore external dependencies
|
||||
*_extdep/
|
||||
UnitTestFrameworkPkg/Library/SubhookLib/
|
||||
Loading…
Add table
Add a link
Reference in a new issue