codespell
¤
Backend for the codespell
tool.
Classes:
Name | Description |
---|---|
CodespellBackend | Backend for the |
CodespellBackend(config: dict[str, Any], known_words: set[str] | None = None)
¤
Bases: Backend
Backend for the codespell
tool.
This backend needs to build a list of misspellings based on dictionaries provided by codespell
itself.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config | dict[str, Any] | User configuration from | required |
known_words | set[str] | None | Globally known words. | None |
Source code in src/mkdocs_spellcheck/backends/codespell.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|