github.com/ddev/ddev@v1.23.2-0.20240519125000-d824ffe36ff3/.spellcheck.yml (about)

     1  matrix:
     2  - name: Markdown
     3    aspell:
     4      lang: en
     5      ignore-case: true
     6    dictionary:
     7      wordlists:
     8      - .spellcheckwordlist.txt
     9      encoding: utf-8
    10    pipeline:
    11    - pyspelling.filters.markdown:
    12        markdown_extensions:
    13        - pymdownx.superfences:
    14            disable_indented_code_blocks: true
    15    - pyspelling.filters.html:
    16        comments: false
    17        ignores:
    18        - code
    19        - pre
    20    - pyspelling.filters.url:
    21    - pyspelling.filters.context:
    22        context_visible_first: true
    23        delimiters:
    24        # Ignore content between `:`, like `:octicons-file-directory-16:`
    25        - open: '(?P<open>:+)'
    26          close: '(?P=open)'
    27    sources:
    28    - 'docs/**/*.md|!docs/content/developers/*|!docs/content/users/topics/version-history.md'
    29    default_encoding: utf-8