diff options
author | crupest <crupest@outlook.com> | 2023-10-03 17:47:49 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-10-03 17:47:49 +0800 |
commit | c106a2dded7caf3f3f2d58394f9f4aab26a142dc (patch) | |
tree | 9d1ddd9e41162bc58966f10b8dca0fef65191acc | |
parent | eb973687560119c0b04431de155433847060ac9e (diff) | |
download | cru-c106a2dded7caf3f3f2d58394f9f4aab26a142dc.tar.gz cru-c106a2dded7caf3f3f2d58394f9f4aab26a142dc.tar.bz2 cru-c106a2dded7caf3f3f2d58394f9f4aab26a142dc.zip |
Setup spellchecker.
-rw-r--r-- | .rgignore | 2 | ||||
-rw-r--r-- | cru-words.txt | 0 | ||||
-rw-r--r-- | cspell.yaml | 19 |
3 files changed, 21 insertions, 0 deletions
diff --git a/.rgignore b/.rgignore new file mode 100644 index 00000000..59a18925 --- /dev/null +++ b/.rgignore @@ -0,0 +1,2 @@ +lib/ + diff --git a/cru-words.txt b/cru-words.txt new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/cru-words.txt diff --git a/cspell.yaml b/cspell.yaml new file mode 100644 index 00000000..f07a4b52 --- /dev/null +++ b/cspell.yaml @@ -0,0 +1,19 @@ +dictionaryDefinitions: + - name: cru-words + path: './cru-words.txt' + addWords: true + +dictionaries: + - cpp + - python + - css + - cru-words + +words: + - crupest + +ignorePaths: + - /build + - /lib + - compile_commands.json + |