diff options
author | Shenglei Zhang <shenglei.zhang@intel.com> | 2020-06-10 14:12:34 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-08-17 03:28:09 +0000 |
commit | 56aa9d19d81451bbecf57a97b9aab27243083c12 (patch) | |
tree | fe7544dd2dc0857aa624ed41334d171560e4b440 /FatPkg | |
parent | 647aa7110f9c744dd0d27b01a50b581eb3de2a57 (diff) | |
download | edk2-56aa9d19d81451bbecf57a97b9aab27243083c12.tar.gz edk2-56aa9d19d81451bbecf57a97b9aab27243083c12.tar.bz2 edk2-56aa9d19d81451bbecf57a97b9aab27243083c12.zip |
FatPkg/FatPkg.ci.yaml: Add configuration for Ecc check
Add configuration ExceptionList and IgnoreFiles for package config
files. So users can rely on this to ignore some Ecc issues.
Cc: Ray Ni <ray.ni@intel.com>
Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
Reviewed-by: Guomin Jiang <guomin.jiang@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'FatPkg')
-rw-r--r-- | FatPkg/FatPkg.ci.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/FatPkg/FatPkg.ci.yaml b/FatPkg/FatPkg.ci.yaml index 489c4614e9..fe95f481b5 100644 --- a/FatPkg/FatPkg.ci.yaml +++ b/FatPkg/FatPkg.ci.yaml @@ -2,12 +2,24 @@ # CI configuration for FatPkg
#
# Copyright (c) Microsoft Corporation
+# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
##
{
"LicenseCheck": {
"IgnoreFiles": []
},
+ "EccCheck": {
+ ## Exception sample looks like below:
+ ## "ExceptionList": [
+ ## "<ErrorID>", "<KeyWord>"
+ ## ]
+ "ExceptionList": [
+ ],
+ ## Both file path and directory path are accepted.
+ "IgnoreFiles": [
+ ]
+ },
"CompilerPlugin": {
"DscPath": "FatPkg.dsc"
},
|