mirror of https://github.com/acidanthera/audk.git
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>
This commit is contained in:
parent
647aa7110f
commit
56aa9d19d8
|
@ -2,12 +2,24 @@
|
||||||
# CI configuration for FatPkg
|
# CI configuration for FatPkg
|
||||||
#
|
#
|
||||||
# Copyright (c) Microsoft Corporation
|
# Copyright (c) Microsoft Corporation
|
||||||
|
# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
|
||||||
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
##
|
##
|
||||||
{
|
{
|
||||||
"LicenseCheck": {
|
"LicenseCheck": {
|
||||||
"IgnoreFiles": []
|
"IgnoreFiles": []
|
||||||
},
|
},
|
||||||
|
"EccCheck": {
|
||||||
|
## Exception sample looks like below:
|
||||||
|
## "ExceptionList": [
|
||||||
|
## "<ErrorID>", "<KeyWord>"
|
||||||
|
## ]
|
||||||
|
"ExceptionList": [
|
||||||
|
],
|
||||||
|
## Both file path and directory path are accepted.
|
||||||
|
"IgnoreFiles": [
|
||||||
|
]
|
||||||
|
},
|
||||||
"CompilerPlugin": {
|
"CompilerPlugin": {
|
||||||
"DscPath": "FatPkg.dsc"
|
"DscPath": "FatPkg.dsc"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue