Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add support for Julia language #5376

Merged
merged 2 commits into from Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.