From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by mx.groups.io with SMTP id smtpd.web09.25.1662564441628367228 for ; Wed, 07 Sep 2022 08:27:21 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@kernel.org header.s=k20201202 header.b=Rx1mx5OS; spf=pass (domain: kernel.org, ip: 139.178.84.217, mailfrom: ardb@kernel.org) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 0EA7261902; Wed, 7 Sep 2022 15:27:21 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 65246C433C1; Wed, 7 Sep 2022 15:27:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1662564440; bh=zk/EoDo+BRjJFSju1CPe7PW5ldhvA5RYcttOuPgASxU=; h=From:To:Cc:Subject:Date:From; b=Rx1mx5OSCYfumdqy22Rsnu8RXdG9/zED8wcwKZVP0PkkzRuuy32Gx5XW8DtGZlYpj 8hBO2J5/GfKP1tcXnbhPkAFlIvWV5CCkryQliaW5cy6QYeJIaxNOD/RSjRIt7iHIPl AZltQFKzo9Cmq53ybGsfYF36vJZcZrpkgqTYrN+dk+22yADp0ULsfEp+PnApOh2O6+ UQLd7BGaV07og/22rJ5EauHoUnGPF40nJfL7jQ4pOzGNu525KLHi4SlcRavOGLMCah 9P1japE9ykq0feF4wy27IK5pa3YR1yBXMAlAWHZ0gHOKcTo2BmliCCllTVAtjn61si GUz3jPEKaXz8g== From: "Ard Biesheuvel" To: devel@edk2.groups.io Cc: quic_llindhol@quicinc.com, mikuback@linux.microsoft.com, Ard Biesheuvel Subject: [PATCH] ArmPkg, ArmVirtPkg: put SpellCheck in AuditOnly mode Date: Wed, 7 Sep 2022 17:27:12 +0200 Message-Id: <20220907152712.1236460-1-ardb@kernel.org> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Don't allow spelling errors to break the CI build and inadvertently reject pull requests - spelling is important but not that important. Signed-off-by: Ard Biesheuvel --- ArmPkg/ArmPkg.ci.yaml | 2 +- ArmVirtPkg/ArmVirtPkg.ci.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ArmPkg/ArmPkg.ci.yaml b/ArmPkg/ArmPkg.ci.yaml index b7e07aaef675..24db74250513 100644 --- a/ArmPkg/ArmPkg.ci.yaml +++ b/ArmPkg/ArmPkg.ci.yaml @@ -87,7 +87,7 @@ =0D ## options defined .pytool/Plugin/SpellCheck=0D "SpellCheck": {=0D - "AuditOnly": False,=0D + "AuditOnly": True,=0D "IgnoreFiles": [=0D "Library/ArmSoftFloatLib/berkeley-softfloat-3/**"=0D ], # use gitignore syntax to ignore erro= rs=0D diff --git a/ArmVirtPkg/ArmVirtPkg.ci.yaml b/ArmVirtPkg/ArmVirtPkg.ci.yaml index d5d63ddd4fd7..1e799dc4e194 100644 --- a/ArmVirtPkg/ArmVirtPkg.ci.yaml +++ b/ArmVirtPkg/ArmVirtPkg.ci.yaml @@ -96,7 +96,7 @@ =0D ## options defined .pytool/Plugin/SpellCheck=0D "SpellCheck": {=0D - "AuditOnly": False, # Fails right now with over 270 erro= rs=0D + "AuditOnly": True,=0D "IgnoreFiles": [], # use gitignore syntax to ignore erro= rs in matching files=0D "ExtendWords": [=0D "acpiview",=0D --=20 2.35.1