Skip to content

Commit

Permalink
feat!: Rebuild Java Dictionary (#1557)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Oct 31, 2022
1 parent a339915 commit e60dbaf
Show file tree
Hide file tree
Showing 6 changed files with 2,940 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dictionaries/java/cspell-ext.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dictionaryDefinitions": [
{
"name": "java",
"path": "./java.txt.gz",
"path": "./java.trie.gz",
"description": "Java dictionary for cspell."
}
],
Expand Down
15 changes: 15 additions & 0 deletions dictionaries/java/cspell-tools.config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/streetsidesoftware/cspell/main/packages/cspell-tools/cspell-tools.config.schema.json

targets:
- name: java
sources:
- src/java.txt
format: trie3
targetDirectory: "."
generateNonStrict: false
# - name: java
# sources:
# - src/java.txt
# format: plaintext
# targetDirectory: "."
# generateNonStrict: false
1 change: 1 addition & 0 deletions dictionaries/java/cspell.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"files": ["**/*.{md,txt}"],
"dictionaries": ["java"],
"ignorePaths": ["*.trie", "src"],
"import": ["./cspell-ext.json"],
"ignoreWords": ["wordlist", "Schmid", "classgraph"]
}

0 comments on commit e60dbaf

Please sign in to comment.