From 219f222f0fde5f456f5ef3decf0135d22fdb3d2d Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Mon, 11 Mar 2024 13:31:19 +0100 Subject: [PATCH] fix: Associate `.jl` files with julia language (#3043) --- dictionaries/julia/cspell-ext.json | 6 ++++++ dictionaries/julia/samples/cspell.json | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 dictionaries/julia/samples/cspell.json diff --git a/dictionaries/julia/cspell-ext.json b/dictionaries/julia/cspell-ext.json index 60f3e9bcca6..46f8aa1127c 100644 --- a/dictionaries/julia/cspell-ext.json +++ b/dictionaries/julia/cspell-ext.json @@ -22,5 +22,11 @@ "dictionaries": ["julia"], "dictionaryDefinitions": [] } + ], + "overrides": [ + { + "filename": "**/*.jl", + "languageId": "julia" + } ] } diff --git a/dictionaries/julia/samples/cspell.json b/dictionaries/julia/samples/cspell.json new file mode 100644 index 00000000000..567b4720db4 --- /dev/null +++ b/dictionaries/julia/samples/cspell.json @@ -0,0 +1,3 @@ +{ + "import": ["../cspell-ext.json"] +}