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:20 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: shenglei.zhang@intel.com) IronPort-SDR: G0eee1KObTI1X8t0alFXAJeZaOgBR3z3AEfCmRqCLCIETaFW0HcUps1DKokHSykIeEOnnLFzMu Z2BFEZ8zPgKw== X-IronPort-AV: E=McAfee;i="6000,8403,9709"; a="171723407" X-IronPort-AV: E=Sophos;i="5.75,460,1589266800"; d="scan'208";a="171723407" 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:19 -0700 IronPort-SDR: fcqWdqNy5pQ/7wrUxj8yRtLxXrYPd/xvkglRWYTHXG2NdcvT1jwufGeSmQvH/Rdm2gApJggTrv AkCBquT/40cQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,460,1589266800"; d="scan'208";a="277496998" Received: from shenglei-dev.ccr.corp.intel.com ([10.239.154.36]) by fmsmga008.fm.intel.com with ESMTP; 11 Aug 2020 00:02:18 -0700 From: "Zhang, Shenglei" To: devel@edk2.groups.io Cc: Jordan Justen , Andrew Fish , Ray Ni Subject: [PATCH v9 06/16] EmulatorPkg/EmulatorPkg.ci.yaml: Add configuration for Ecc check Date: Tue, 11 Aug 2020 15:01:54 +0800 Message-Id: <20200811070204.55160-7-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: Jordan Justen Cc: Andrew Fish Cc: Ray Ni Signed-off-by: Shenglei Zhang Acked-by: Ray Ni Reviewed-by: Liming Gao --- EmulatorPkg/EmulatorPkg.ci.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/EmulatorPkg/EmulatorPkg.ci.yaml b/EmulatorPkg/EmulatorPkg.ci.yaml index dead82f69745..980844c1fdd4 100644 --- a/EmulatorPkg/EmulatorPkg.ci.yaml +++ b/EmulatorPkg/EmulatorPkg.ci.yaml @@ -5,6 +5,7 @@ # used for code analysis. # # Copyright (c) Microsoft Corporation +# Copyright (c) 2020, Intel Corporation. All rights reserved.
# SPDX-License-Identifier: BSD-2-Clause-Patent ## { @@ -12,6 +13,17 @@ "LicenseCheck": { "IgnoreFiles": [] }, + "EccCheck": { + ## Exception sample looks like below: + ## "ExceptionList": [ + ## "", "" + ## ] + "ExceptionList": [ + ], + ## Both file path and directory path are accepted. + "IgnoreFiles": [ + ] + }, ## options defined .pytool/Plugin/CompilerPlugin "CompilerPlugin": { "DscPath": "" # Don't support this test -- 2.18.0.windows.1