]>
Commit | Line | Data |
---|---|---|
951a0353 SB |
1 | ## @file\r |
2 | # Core CI configuration for EmulatorPkg\r | |
3 | #\r | |
4 | # EmulatorPkg is part of Platform Ci for builds so this is only\r | |
5 | # used for code analysis.\r | |
6 | #\r | |
7 | # Copyright (c) Microsoft Corporation\r | |
647aa711 | 8 | # Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>\r |
951a0353 SB |
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent\r |
10 | ##\r | |
11 | {\r | |
7ed9c63d SZ |
12 | ## options defined .pytool/Plugin/LicenseCheck\r |
13 | "LicenseCheck": {\r | |
14 | "IgnoreFiles": []\r | |
15 | },\r | |
647aa711 SZ |
16 | "EccCheck": {\r |
17 | ## Exception sample looks like below:\r | |
18 | ## "ExceptionList": [\r | |
19 | ## "<ErrorID>", "<KeyWord>"\r | |
20 | ## ]\r | |
21 | "ExceptionList": [\r | |
22 | ],\r | |
23 | ## Both file path and directory path are accepted.\r | |
24 | "IgnoreFiles": [\r | |
d7d30e8f MK |
25 | "EmuBlockIoDxe/EmuBlockIo.c",\r |
26 | "EmuGopDxe/GopInput.c",\r | |
27 | "EmuSnpDxe/EmuSnpDxe.c",\r | |
28 | "EmuSimpleFileSystemDxe/EmuSimpleFileSystem.c",\r | |
29 | "FvbServicesRuntimeDxe/FWBlockService.c",\r | |
30 | "Win/Host/WinFileSystem.c",\r | |
31 | "Win/Host/WinInclude.h"\r | |
647aa711 SZ |
32 | ]\r |
33 | },\r | |
951a0353 SB |
34 | ## options defined .pytool/Plugin/CompilerPlugin\r |
35 | "CompilerPlugin": {\r | |
36 | "DscPath": "" # Don't support this test\r | |
37 | },\r | |
38 | \r | |
39 | ## options defined .pytool/Plugin/HostUnitTestCompilerPlugin\r | |
40 | "HostUnitTestCompilerPlugin": {\r | |
41 | "DscPath": "" # Don't support this test\r | |
42 | },\r | |
43 | \r | |
44 | ## options defined .pytool/Plugin/CharEncodingCheck\r | |
45 | "CharEncodingCheck": {\r | |
46 | "IgnoreFiles": []\r | |
47 | },\r | |
48 | \r | |
49 | ## options defined .pytool/Plugin/DependencyCheck\r | |
50 | "DependencyCheck": {\r | |
51 | "AcceptableDependencies": [\r | |
52 | # For this platform all packages are allowed???\r | |
53 | "MdePkg/MdePkg.dec",\r | |
54 | "MdeModulePkg/MdeModulePkg.dec",\r | |
55 | "EmulatorPkg/EmulatorPkg.dec",\r | |
56 | "NetworkPkg/NetworkPkg.dec",\r | |
f9448728 | 57 | "RedfishPkg/RedfishPkg.dec",\r |
951a0353 SB |
58 | "EmbeddedPkg/EmbeddedPkg.dec", ## is this one OK??\r |
59 | ],\r | |
60 | # For host based unit tests\r | |
61 | "AcceptableDependencies-HOST_APPLICATION":[\r | |
62 | "UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec"\r | |
63 | ],\r | |
64 | # For UEFI shell based apps\r | |
65 | "AcceptableDependencies-UEFI_APPLICATION":[],\r | |
66 | "IgnoreInf": []\r | |
67 | },\r | |
68 | \r | |
69 | ## options defined .pytool/Plugin/DscCompleteCheck\r | |
70 | "DscCompleteCheck": {\r | |
71 | "IgnoreInf": [""],\r | |
72 | "DscPath": "" # Don't support this test\r | |
73 | },\r | |
74 | \r | |
75 | ## options defined .pytool/Plugin/HostUnitTestDscCompleteCheck\r | |
76 | "HostUnitTestDscCompleteCheck": {\r | |
77 | "IgnoreInf": [""],\r | |
78 | "DscPath": "" # Don't support this test\r | |
79 | },\r | |
80 | \r | |
81 | ## options defined .pytool/Plugin/GuidCheck\r | |
82 | "GuidCheck": {\r | |
83 | "IgnoreGuidName": [],\r | |
84 | "IgnoreGuidValue": [],\r | |
85 | "IgnoreFoldersAndFiles": [],\r | |
86 | "IgnoreDuplicates": [],\r | |
87 | },\r | |
88 | \r | |
89 | ## options defined .pytool/Plugin/LibraryClassCheck\r | |
90 | "LibraryClassCheck": {\r | |
91 | "IgnoreHeaderFile": []\r | |
92 | },\r | |
93 | \r | |
94 | ## options defined .pytool/Plugin/SpellCheck\r | |
95 | "SpellCheck": {\r | |
96 | "AuditOnly": True, # Fails right now with over 270 errors\r | |
97 | "IgnoreFiles": [], # use gitignore syntax to ignore errors in matching files\r | |
98 | "ExtendWords": [\r | |
99 | "setjump",\r | |
100 | "plong",\r | |
101 | "lparam",\r | |
102 | "lpdword",\r | |
103 | "lpthread",\r | |
104 | "lresult",\r | |
105 | ], # words to extend to the dictionary for this package\r | |
106 | "IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore\r | |
107 | "AdditionalIncludePaths": [] # Additional paths to spell check (wildcards supported)\r | |
108 | }\r | |
109 | }\r |