From 4521bd50a604de0f549755ab4461e8ab5842b304 Mon Sep 17 00:00:00 2001 From: Reece Humphreys Date: Fri, 26 Apr 2024 11:01:01 -0400 Subject: [PATCH] ice added to cspell enableFiletypes --- .vscode/cspell.json | 17 +++++++++++++++++ .vscode/settings.json | 3 +++ 2 files changed, 20 insertions(+) create mode 100644 .vscode/cspell.json diff --git a/.vscode/cspell.json b/.vscode/cspell.json new file mode 100644 index 00000000000..48c7f15ee2b --- /dev/null +++ b/.vscode/cspell.json @@ -0,0 +1,17 @@ +{ + "version": "0.2", + "language": "en", + "words": [ + "ICESTORM", + "unmarshal", + "unmarshaling" + ], + "dictionaries": [ + "csharp", + "softwareTerms", + "en_US" + ], + "enableFiletypes": [ + "ice" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json index 20e2ef759f5..bc0a2e68337 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -82,10 +82,13 @@ "__memory": "cpp" }, "C_Cpp.default.cppStandard": "c++20", +<<<<<<< Updated upstream "cSpell.words": [ "decoratee", "ICESTORM", "unmarshal", "unmarshaling" ], +======= +>>>>>>> Stashed changes }