mirror of
https://github.com/curl/curl.git
synced 2026-04-13 00:31:41 +08:00
To make the test files XML-compliant, and the expected results possibly easier to manage by keeping them in `.md`, `.html`, `.1` and `.txt` files. Non-XML-compliant files are down to 31 (1.6%) after this patch. Closes #19882
34 lines
913 B
YAML
34 lines
913 B
YAML
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
#
|
|
# Docs: https://facelessuser.github.io/pyspelling/configuration/
|
|
# Docs: https://github.com/UnicornGlobal/spellcheck-github-actions
|
|
matrix:
|
|
- name: Markdown
|
|
expect_match: false
|
|
apsell:
|
|
mode: en
|
|
dictionary:
|
|
wordlists:
|
|
- wordlist.txt
|
|
output: wordlist.dic
|
|
encoding: utf-8
|
|
pipeline:
|
|
- pyspelling.filters.markdown:
|
|
markdown_extensions:
|
|
- markdown.extensions.extra:
|
|
- pyspelling.filters.html:
|
|
comments: true
|
|
attributes:
|
|
- title
|
|
- alt
|
|
ignores:
|
|
- ':matches(code, pre)'
|
|
- 'code'
|
|
- 'pre'
|
|
- 'strong'
|
|
- 'em'
|
|
sources:
|
|
- '**/*.md|!docs/BINDINGS.md|!docs/DISTROS.md|!docs/CIPHERS-TLS12.md|!docs/wcurl.md|!tests/data/data*.md'
|