Skip to content

Commit f18bcf4

Browse files
authored
fix: Add support for Julia language (#5376)
1 parent db35557 commit f18bcf4

File tree

5 files changed

+13
-2
lines changed

5 files changed

+13
-2
lines changed

packages/cspell-bundled-dicts/cspell-default.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const settings = {
114114
ignoreRegExpList: ['MARKDOWN-link-reference', 'MARKDOWN-link-footer', 'MARKDOWN-link', 'MARKDOWN-anchor'],
115115
},
116116
],
117-
enableFiletypes: ['svelte'],
117+
enableFiletypes: ['svelte', 'julia'],
118118
import: [
119119
'@cspell/dict-ada/cspell-ext.json',
120120
'@cspell/dict-aws/cspell-ext.json',
@@ -143,6 +143,7 @@ const settings = {
143143
'@cspell/dict-html-symbol-entities/cspell-ext.json',
144144
'@cspell/dict-html/cspell-ext.json',
145145
'@cspell/dict-java/cspell-ext.json',
146+
'@cspell/dict-julia/cspell-ext.json',
146147
'@cspell/dict-k8s/cspell-ext.json',
147148
'@cspell/dict-latex/cspell-ext.json',
148149
'@cspell/dict-lorem-ipsum/cspell-ext.json',

packages/cspell-bundled-dicts/cspell-default.config.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ const settings: AdvancedCSpellSettings = {
117117
ignoreRegExpList: ['MARKDOWN-link-reference', 'MARKDOWN-link-footer', 'MARKDOWN-link', 'MARKDOWN-anchor'],
118118
},
119119
],
120-
enableFiletypes: ['svelte'],
120+
enableFiletypes: ['svelte', 'julia'],
121121
import: [
122122
'@cspell/dict-ada/cspell-ext.json',
123123
'@cspell/dict-aws/cspell-ext.json',
@@ -146,6 +146,7 @@ const settings: AdvancedCSpellSettings = {
146146
'@cspell/dict-html-symbol-entities/cspell-ext.json',
147147
'@cspell/dict-html/cspell-ext.json',
148148
'@cspell/dict-java/cspell-ext.json',
149+
'@cspell/dict-julia/cspell-ext.json',
149150
'@cspell/dict-k8s/cspell-ext.json',
150151
'@cspell/dict-latex/cspell-ext.json',
151152
'@cspell/dict-lorem-ipsum/cspell-ext.json',

packages/cspell-bundled-dicts/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
"@cspell/dict-html": "^4.0.5",
7474
"@cspell/dict-html-symbol-entities": "^4.0.0",
7575
"@cspell/dict-java": "^5.0.6",
76+
"@cspell/dict-julia": "^1.0.1",
7677
"@cspell/dict-k8s": "^1.0.2",
7778
"@cspell/dict-latex": "^4.0.0",
7879
"@cspell/dict-lorem-ipsum": "^4.0.0",

packages/cspell/src/app/__snapshots__/app.test.ts.snap

+1
Original file line numberDiff line numberDiff line change
@@ -2767,6 +2767,7 @@ hello - haskell node_modules/@cspell/.../dict/haskell.txt
27672767
hello - html node_modules/@cspell/dict-html/dict/html.txt
27682768
hello - html-symbol-entities node_modules/@cspell/.../entities.txt.gz
27692769
hello - java node_modules/@cspell/dict-java/dict/java.trie
2770+
hello - julia node_modules/@cspell/dict-julia/dict/julia.txt
27702771
hello - k8s node_modules/@cspell/dict-k8s/dict/k8s.txt
27712772
hello - latex node_modules/@cspell/dict-latex/dict/latex.txt
27722773
hello - lorem-ipsum node_modules/@cspell/.../dict/lorem.txt

pnpm-lock.yaml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)