Skip to content

Commit

Permalink
fix: Add support for Julia language (#5376)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Mar 14, 2024
1 parent db35557 commit f18bcf4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/cspell-bundled-dicts/cspell-default.config.js
Expand Up @@ -114,7 +114,7 @@ const settings = {
ignoreRegExpList: ['MARKDOWN-link-reference', 'MARKDOWN-link-footer', 'MARKDOWN-link', 'MARKDOWN-anchor'],
},
],
enableFiletypes: ['svelte'],
enableFiletypes: ['svelte', 'julia'],
import: [
'@cspell/dict-ada/cspell-ext.json',
'@cspell/dict-aws/cspell-ext.json',
Expand Down Expand Up @@ -143,6 +143,7 @@ const settings = {
'@cspell/dict-html-symbol-entities/cspell-ext.json',
'@cspell/dict-html/cspell-ext.json',
'@cspell/dict-java/cspell-ext.json',
'@cspell/dict-julia/cspell-ext.json',
'@cspell/dict-k8s/cspell-ext.json',
'@cspell/dict-latex/cspell-ext.json',
'@cspell/dict-lorem-ipsum/cspell-ext.json',
Expand Down
3 changes: 2 additions & 1 deletion packages/cspell-bundled-dicts/cspell-default.config.ts
Expand Up @@ -117,7 +117,7 @@ const settings: AdvancedCSpellSettings = {
ignoreRegExpList: ['MARKDOWN-link-reference', 'MARKDOWN-link-footer', 'MARKDOWN-link', 'MARKDOWN-anchor'],
},
],
enableFiletypes: ['svelte'],
enableFiletypes: ['svelte', 'julia'],
import: [
'@cspell/dict-ada/cspell-ext.json',
'@cspell/dict-aws/cspell-ext.json',
Expand Down Expand Up @@ -146,6 +146,7 @@ const settings: AdvancedCSpellSettings = {
'@cspell/dict-html-symbol-entities/cspell-ext.json',
'@cspell/dict-html/cspell-ext.json',
'@cspell/dict-java/cspell-ext.json',
'@cspell/dict-julia/cspell-ext.json',
'@cspell/dict-k8s/cspell-ext.json',
'@cspell/dict-latex/cspell-ext.json',
'@cspell/dict-lorem-ipsum/cspell-ext.json',
Expand Down
1 change: 1 addition & 0 deletions packages/cspell-bundled-dicts/package.json
Expand Up @@ -73,6 +73,7 @@
"@cspell/dict-html": "^4.0.5",
"@cspell/dict-html-symbol-entities": "^4.0.0",
"@cspell/dict-java": "^5.0.6",
"@cspell/dict-julia": "^1.0.1",
"@cspell/dict-k8s": "^1.0.2",
"@cspell/dict-latex": "^4.0.0",
"@cspell/dict-lorem-ipsum": "^4.0.0",
Expand Down
1 change: 1 addition & 0 deletions packages/cspell/src/app/__snapshots__/app.test.ts.snap
Expand Up @@ -2767,6 +2767,7 @@ hello - haskell node_modules/@cspell/.../dict/haskell.txt
hello - html node_modules/@cspell/dict-html/dict/html.txt
hello - html-symbol-entities node_modules/@cspell/.../entities.txt.gz
hello - java node_modules/@cspell/dict-java/dict/java.trie
hello - julia node_modules/@cspell/dict-julia/dict/julia.txt
hello - k8s node_modules/@cspell/dict-k8s/dict/k8s.txt
hello - latex node_modules/@cspell/dict-latex/dict/latex.txt
hello - lorem-ipsum node_modules/@cspell/.../dict/lorem.txt
Expand Down
7 changes: 7 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f18bcf4

Please sign in to comment.