diff options
author | Michael Kubacki <michael.kubacki@microsoft.com> | 2022-05-17 18:16:39 -0400 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-05-19 03:02:14 +0000 |
commit | 7b126978e12bd490af63194cf1dafa41a0753659 (patch) | |
tree | 5b43cc33362420b51080c251cd5dabc07a49e1dc /.pytool/Plugin | |
parent | 2d1138a1a839992693a82cf69ec1f88dbc64c559 (diff) | |
download | edk2-7b126978e12bd490af63194cf1dafa41a0753659.tar.gz |
.pytool/plugin/SpellCheck: Allow compound words
Sets "allowCompoundWords" to "true" to reduce the number of compound
word issues encountered in the future.
Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Bret Barkelew <Bret.Barkelew@microsoft.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to '.pytool/Plugin')
-rw-r--r-- | .pytool/Plugin/SpellCheck/cspell.base.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.pytool/Plugin/SpellCheck/cspell.base.yaml b/.pytool/Plugin/SpellCheck/cspell.base.yaml index ad6f7ac06a..3d4fd71f16 100644 --- a/.pytool/Plugin/SpellCheck/cspell.base.yaml +++ b/.pytool/Plugin/SpellCheck/cspell.base.yaml @@ -21,7 +21,7 @@ "*.jpg"
],
"minWordLength": 5,
- "allowCompoundWords": false,
+ "allowCompoundWords": true,
"maxNumberOfProblems": 200,
"maxDuplicateProblems": 200,
"ignoreWords": [
|