spacedrive/cspell.config.yaml
Ericson "Fogo" Soares 85e5eec993
Resumable Jobs + Lefthook Integration (#344)
* Introducing Lefthook for git hooks automation
* TypeScript typechecking and linting
* Rust formatting and linting
* Spellchecking (also corrected spell errors in some files)
* Check links in md files

* Introducing resumable jobs
* Abstractions to pause and resume jobs automatically when application exits and is started
* Changing database to use Bytes for UUID fields
* Changing uuid fields on core to use uuid::Uuid instead of String
* Updating some dependencies and introducing msg_pack serialization to save job state on database

* Fixing some clippy warnings

* Fixing a regression introduced on identifier job, doing too much db accesses concurrently
2022-07-27 00:06:34 -07:00

20 lines
551 B
YAML

$schema: https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json
version: '0.2'
dictionaryDefinitions:
- name: project_words
path: './.cspell/project_words.txt'
addWords: true
- name: frontend_custom_words
path: './.cspell/frontend_custom_words.txt'
addWords: true
- name: backend_custom_words
path: './.cspell/backend_custom_words.txt'
addWords: true
dictionaries:
- project_words
- frontend_custom_words
- backend_custom_words
ignorePaths:
- 'node_modules'
- '.cspell'
- 'target'