From 01901719e5d16e7c2f44a91e406d97417e778083 Mon Sep 17 00:00:00 2001 From: zervo Date: Mon, 9 Dec 2024 08:53:01 +0100 Subject: [PATCH] Add spell configuration Add basic cspell configuration and dictionary to remove false spelling warnings. --- .cspell/custom-dictionary.txt | 7 +++++++ cspell.json | 17 +++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .cspell/custom-dictionary.txt create mode 100644 cspell.json diff --git a/.cspell/custom-dictionary.txt b/.cspell/custom-dictionary.txt new file mode 100644 index 0000000..ad433d1 --- /dev/null +++ b/.cspell/custom-dictionary.txt @@ -0,0 +1,7 @@ +# Custom Dictionary Words +skola +goskola +pubtypes +zervo +zervó +zadachin \ No newline at end of file diff --git a/cspell.json b/cspell.json new file mode 100644 index 0000000..c93be37 --- /dev/null +++ b/cspell.json @@ -0,0 +1,17 @@ +{ + "version": "0.2", + "ignorePaths": [], + "dictionaryDefinitions": [ + { + "name": "custom-dictionary", + "path": "./.cspell/custom-dictionary.txt", + "addWords": true + } + ], + "dictionaries": [ + "custom-dictionary" + ], + "words": [], + "ignoreWords": [], + "import": [] +}