Skip to content

Commit

Permalink
fix: Add Kotlin dictionary (#6725)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored Dec 30, 2024
1 parent 6f91371 commit 2f636c5
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 60 deletions.
32 changes: 3 additions & 29 deletions integration-tests/snapshots/flutter/samples/report.yaml

Large diffs are not rendered by default.

26 changes: 1 addition & 25 deletions integration-tests/snapshots/flutter/samples/snapshot.txt

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/cspell-bundled-dicts/cspell-default.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
"use strict";
const settings = {
version: '0.2',
name: 'cspell default settings .js',
Expand Down Expand Up @@ -130,6 +129,7 @@ const settings = {
'@cspell/dict-java/cspell-ext.json',
'@cspell/dict-julia/cspell-ext.json',
'@cspell/dict-k8s/cspell-ext.json',
'@cspell/dict-kotlin/cspell-ext.json',
'@cspell/dict-latex/cspell-ext.json',
'@cspell/dict-lorem-ipsum/cspell-ext.json',
'@cspell/dict-lua/cspell-ext.json',
Expand All @@ -155,4 +155,4 @@ const settings = {
'@cspell/dict-vue/cspell-ext.json',
],
};
module.exports = settings;
export default settings;
3 changes: 2 additions & 1 deletion packages/cspell-bundled-dicts/cspell-default.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ const settings: AdvancedCSpellSettings = {
'@cspell/dict-java/cspell-ext.json',
'@cspell/dict-julia/cspell-ext.json',
'@cspell/dict-k8s/cspell-ext.json',
'@cspell/dict-kotlin/cspell-ext.json',
'@cspell/dict-latex/cspell-ext.json',
'@cspell/dict-lorem-ipsum/cspell-ext.json',
'@cspell/dict-lua/cspell-ext.json',
Expand All @@ -158,4 +159,4 @@ const settings: AdvancedCSpellSettings = {
],
};

export = settings;
export default settings;
3 changes: 2 additions & 1 deletion packages/cspell-bundled-dicts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"access": "public",
"provenance": true
},
"type": "commonjs",
"type": "module",
"sideEffects": false,
"main": "cspell-default.json",
"files": [
Expand Down Expand Up @@ -80,6 +80,7 @@
"@cspell/dict-java": "^5.0.11",
"@cspell/dict-julia": "^1.0.5",
"@cspell/dict-k8s": "^1.0.10",
"@cspell/dict-kotlin": "^1.0.4",
"@cspell/dict-latex": "^4.0.3",
"@cspell/dict-lorem-ipsum": "^4.0.4",
"@cspell/dict-lua": "^4.0.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-bundled-dicts/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.json",
"extends": "../../tsconfig.esm.json",
"compilerOptions": {
"declaration": false,
"declarationMap": false,
Expand Down
1 change: 1 addition & 0 deletions packages/cspell/src/app/__snapshots__/app.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3567,6 +3567,7 @@ hello - html-symbol-entitie 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 - kotlin node_modules/@cspell/dict-kotlin/dict/kotlin.txt
hello - latex node_modules/@cspell/dict-latex/dict/latex.txt
hello - lorem-ipsum node_modules/@cspell/.../dict/lorem.txt
hello - lua node_modules/@cspell/dict-lua/dict/lua.txt
Expand Down
10 changes: 9 additions & 1 deletion pnpm-lock.yaml

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

0 comments on commit 2f636c5

Please sign in to comment.