1 | ## @file
|
---|
2 | # Core CI configuration for EmbeddedPkg
|
---|
3 | #
|
---|
4 | # Copyright (c) Microsoft Corporation
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | ##
|
---|
8 | {
|
---|
9 | ## options defined .pytool/Plugin/LicenseCheck
|
---|
10 | "LicenseCheck": {
|
---|
11 | "IgnoreFiles": []
|
---|
12 | },
|
---|
13 |
|
---|
14 | "EccCheck": {
|
---|
15 | ## Exception sample looks like below:
|
---|
16 | ## "ExceptionList": [
|
---|
17 | ## "<ErrorID>", "<KeyWord>"
|
---|
18 | ## ]
|
---|
19 | "ExceptionList": [
|
---|
20 | ],
|
---|
21 | ## Both file path and directory path are accepted.
|
---|
22 | "IgnoreFiles": []
|
---|
23 | },
|
---|
24 |
|
---|
25 | ## options defined .pytool/Plugin/CompilerPlugin
|
---|
26 | "CompilerPlugin": {
|
---|
27 | "DscPath": "EmbeddedPkg.dsc"
|
---|
28 | },
|
---|
29 |
|
---|
30 | ## options defined .pytool/Plugin/HostUnitTestCompilerPlugin
|
---|
31 | "HostUnitTestCompilerPlugin": {
|
---|
32 | "DscPath": "" # Don't support this test
|
---|
33 | },
|
---|
34 |
|
---|
35 | ## options defined .pytool/Plugin/CharEncodingCheck
|
---|
36 | "CharEncodingCheck": {
|
---|
37 | "IgnoreFiles": []
|
---|
38 | },
|
---|
39 |
|
---|
40 | ## options defined .pytool/Plugin/DependencyCheck
|
---|
41 | "DependencyCheck": {
|
---|
42 | "AcceptableDependencies": [
|
---|
43 | "ArmPkg/ArmPkg.dec",
|
---|
44 | "ArmPlatformPkg/ArmPlatformPkg.dec",
|
---|
45 | "EmbeddedPkg/EmbeddedPkg.dec",
|
---|
46 | "MdeModulePkg/MdeModulePkg.dec",
|
---|
47 | "MdePkg/MdePkg.dec"
|
---|
48 | ],
|
---|
49 | # For host based unit tests
|
---|
50 | "AcceptableDependencies-HOST_APPLICATION":[],
|
---|
51 | # For UEFI shell based apps
|
---|
52 | "AcceptableDependencies-UEFI_APPLICATION":[],
|
---|
53 | "IgnoreInf": []
|
---|
54 | },
|
---|
55 |
|
---|
56 | ## options defined .pytool/Plugin/DscCompleteCheck
|
---|
57 | "DscCompleteCheck": {
|
---|
58 | "IgnoreInf": [""],
|
---|
59 | "DscPath": "" # Don't support this test
|
---|
60 | },
|
---|
61 |
|
---|
62 | ## options defined .pytool/Plugin/HostUnitTestDscCompleteCheck
|
---|
63 | "HostUnitTestDscCompleteCheck": {
|
---|
64 | "IgnoreInf": [""],
|
---|
65 | "DscPath": "" # Don't support this test
|
---|
66 | },
|
---|
67 |
|
---|
68 | ## options defined .pytool/Plugin/GuidCheck
|
---|
69 | "GuidCheck": {
|
---|
70 | "IgnoreGuidName": [],
|
---|
71 | "IgnoreGuidValue": [],
|
---|
72 | "IgnoreFoldersAndFiles": [],
|
---|
73 | "IgnoreDuplicates": [],
|
---|
74 | },
|
---|
75 |
|
---|
76 | ## options defined .pytool/Plugin/LibraryClassCheck
|
---|
77 | "LibraryClassCheck": {
|
---|
78 | "IgnoreHeaderFile": []
|
---|
79 | },
|
---|
80 |
|
---|
81 | ## options defined .pytool/Plugin/SpellCheck
|
---|
82 | "SpellCheck": {
|
---|
83 | "AuditOnly": True, # Fails right now with over 270 errors
|
---|
84 | "IgnoreFiles": [], # use gitignore syntax to ignore errors in matching files
|
---|
85 | "ExtendWords": [], # words to extend to the dictionary for this package
|
---|
86 | "IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore
|
---|
87 | "AdditionalIncludePaths": [] # Additional paths to spell check (wildcards supported)
|
---|
88 | }
|
---|
89 | }
|
---|