From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mx.groups.io with SMTP id smtpd.web12.8374.1584610685713260985 for ; Thu, 19 Mar 2020 02:38:05 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.100, mailfrom: shenglei.zhang@intel.com) IronPort-SDR: EJFVLz7t5o1ktg/llLDKP61T6a/eswkJRKHfHPr3rzRpCENQoZDTjMhadleCFfNJfGlrwtu+KX v7SXL9in55vw== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Mar 2020 02:38:05 -0700 IronPort-SDR: u03260rwohVpp/euggwQkpcJtrvq7OHmOewWJDw3c/PE4pO1QVtDzbmd7wO065oG7Gq1QQWsF5 YMI/QG+O1F6g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,571,1574150400"; d="scan'208";a="248481999" Received: from shenglei-dev.ccr.corp.intel.com ([10.239.158.52]) by orsmga006.jf.intel.com with ESMTP; 19 Mar 2020 02:38:03 -0700 From: "Zhang, Shenglei" To: devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Michael D Kinney , Liming Gao Subject: [PATCH] .pytool: Add two keys in cspell.base.yaml Date: Thu, 19 Mar 2020 17:37:54 +0800 Message-Id: <20200319093754.18900-1-shenglei.zhang@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In order to catch as many issues as possible in a single pass (to allow devs to fix test failures in one commit rather than several), recommend increasing the max failure count and max duplicate count in SpellCheck plugin. REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2593 Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Shenglei Zhang --- .pytool/Plugin/SpellCheck/cspell.base.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.pytool/Plugin/SpellCheck/cspell.base.yaml b/.pytool/Plugin/SpellCheck/cspell.base.yaml index 53000fc38141..7620dff3ceb2 100644 --- a/.pytool/Plugin/SpellCheck/cspell.base.yaml +++ b/.pytool/Plugin/SpellCheck/cspell.base.yaml @@ -21,6 +21,8 @@ "*.jpg" ], "minWordLength": 5, + "maxNumberOfProblems": 200, + "maxDuplicateProblems": 200, "allowCompoundWords": false, "ignoreWords": [ "muchange" -- 2.18.0.windows.1