From 0a60600b661dc7ff4af2bac32d93464615ef344c Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Mon, 27 Mar 2023 17:09:45 +0200 Subject: [PATCH] chore: minor test and doc fix (#2613) --- CONTRIBUTE.md | 3 +-- packages/_server/src/config/documentSettings.test.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md index 585d8505a..244cac744 100644 --- a/CONTRIBUTE.md +++ b/CONTRIBUTE.md @@ -94,8 +94,7 @@ If anything shows up, then the port is still locked. Improvements to existing word lists and new word lists are welcome. -All dictionaries are being migrated to [cspell-dicts](https://github.com/Jason3S/cspell-dicts). -Some dictionaries are still located at [cspell](https://github.com/Jason3S/cspell)/[dictionaries](https://github.com/streetsidesoftware/cspell/tree/master/packages/cspell-lib/dictionaries). +All dictionaries have been migrated to [cspell-dicts](https://github.com/streetsidesoftware/cspell-dicts). ### Format for Dictionary Word lists diff --git a/packages/_server/src/config/documentSettings.test.ts b/packages/_server/src/config/documentSettings.test.ts index 9d9e54d9c..f22a7000a 100644 --- a/packages/_server/src/config/documentSettings.test.ts +++ b/packages/_server/src/config/documentSettings.test.ts @@ -312,7 +312,7 @@ describe('Validate DocumentSettings', () => { .map(({ glob, settings }) => ({ glob, source: settings.source })) .map(({ glob, source }) => ({ glob, settings: { source: { name: source?.name, filename: source?.filename } } })); - console.log('%o', rSimplified); + // console.log('%o', rSimplified); expect(rSimplified).toEqual(expected); });