From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga01.intel.com (mga01.intel.com []) by mx.groups.io with SMTP id smtpd.web10.9931.1597129329084339712 for ; Tue, 11 Aug 2020 00:02:33 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: shenglei.zhang@intel.com) IronPort-SDR: XjT2D14j8T9OWdeFdkUON1WMnRI9bY7QckzoR0D8xXo9sVPsG76pLebrdZtAE6a22ELz019xyS czw1ueMElIGA== X-IronPort-AV: E=McAfee;i="6000,8403,9709"; a="171723487" X-IronPort-AV: E=Sophos;i="5.75,460,1589266800"; d="scan'208";a="171723487" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Aug 2020 00:02:33 -0700 IronPort-SDR: b+XC6UJ6DPj9YO/dZUQcKGEUMSUb6CGQcMRMTEgXroAn2UXowd2Ec/QHcd5Ts0H56fWGQQcyBp vhR29TYsOvcA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,460,1589266800"; d="scan'208";a="277497117" Received: from shenglei-dev.ccr.corp.intel.com ([10.239.154.36]) by fmsmga008.fm.intel.com with ESMTP; 11 Aug 2020 00:02:32 -0700 From: "Zhang, Shenglei" To: devel@edk2.groups.io Cc: Ray Ni , Zhichao Gao Subject: [PATCH v9 14/16] ShellPkg/ShellPkg.ci.yaml: Add configuration for Ecc check Date: Tue, 11 Aug 2020 15:02:02 +0800 Message-Id: <20200811070204.55160-15-shenglei.zhang@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20200811070204.55160-1-shenglei.zhang@intel.com> References: <20200811070204.55160-1-shenglei.zhang@intel.com> Add configuration ExceptionList and IgnoreFiles for package config files. So users can rely on this to ignore some Ecc issues. Cc: Ray Ni Cc: Zhichao Gao Signed-off-by: Shenglei Zhang Acked-by: Ray Ni Reviewed-by: Liming Gao --- ShellPkg/ShellPkg.ci.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ShellPkg/ShellPkg.ci.yaml b/ShellPkg/ShellPkg.ci.yaml index 565e08596b2f..30894d44bc3a 100644 --- a/ShellPkg/ShellPkg.ci.yaml +++ b/ShellPkg/ShellPkg.ci.yaml @@ -2,12 +2,24 @@ # CI configuration for ShellPkg # # Copyright (c) Microsoft Corporation +# Copyright (c) 2020, Intel Corporation. All rights reserved.
# SPDX-License-Identifier: BSD-2-Clause-Patent ## { "LicenseCheck": { "IgnoreFiles": [] }, + "EccCheck": { + ## Exception sample looks like below: + ## "ExceptionList": [ + ## "", "" + ## ] + "ExceptionList": [ + ], + ## Both file path and directory path are accepted. + "IgnoreFiles": [ + ] + }, "CompilerPlugin": { "DscPath": "ShellPkg.dsc" }, -- 2.18.0.windows.1