-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Settings used for currently available plugins and settings. Some config for plugins not yet added to the branch is not included from the CI YAML files in the previous Mu release branch. Signed-off-by: Michael Kubacki <[email protected]>
- Loading branch information
Showing
9 changed files
with
98 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
## @file | ||
# CI configuration for BaseTools | ||
# | ||
# Copyright (c) Microsoft Corporation | ||
# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR> | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
## | ||
{ | ||
## options defined .pytool/Plugin/LicenseCheck | ||
"LicenseCheck": { | ||
"skip": True, | ||
"IgnoreFiles": [] | ||
}, | ||
"EccCheck": { | ||
"skip": True, | ||
}, | ||
## options defined .pytool/Plugin/SpellCheck | ||
"SpellCheck": { | ||
"AuditOnly": True, # Fails test but run in AuditOnly mode to collect log | ||
"IgnoreStandardPaths": [ # Standard Plugin defined paths that should be ignore | ||
"*.c", "*.asm", "*.h", "*.nasm", "*.s", "*.asl", "*.inf" | ||
], | ||
# use gitignore syntax to ignore errors in matching files | ||
"IgnoreFiles": [ | ||
"Source/C/BrotliCompress", | ||
], | ||
# words to extend to the dictionary for this package | ||
"ExtendWords": [], | ||
"AdditionalIncludePaths": [] # Additional paths to spell check relative to package root (wildcards supported) | ||
}, | ||
|
||
## options defined .pytool/Plugin/MarkdownLintCheck | ||
"MarkdownLintCheck": { | ||
# package root relative file, folder, or glob pattern to ignore | ||
"IgnoreFiles": [ | ||
"Source/C/BrotliCompress/brotli", | ||
"BaseToolsBuild" # MU_CHANGE - Ignore build logs. | ||
] | ||
}, | ||
|
||
# MU_CHANGE [BEGIN] | ||
## options defined .pytool/Plugin/UncrustifyCheck | ||
"UncrustifyCheck": { | ||
"AuditOnly": True, | ||
"IgnoreFiles": ["*"], | ||
}, | ||
"LineEndingCheck": { | ||
"IgnoreFiles": ["*"], | ||
} | ||
# MU_CHANGE [END] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters