|
| 1 | +matrix: |
| 2 | +- name: JavaScript |
| 3 | + sources: |
| 4 | + - 'docs/source/**/*.js' |
| 5 | + expect_match: false |
| 6 | + aspell: |
| 7 | + lang: en |
| 8 | + dictionary: |
| 9 | + wordlists: |
| 10 | + - scripts/spellcheck_conf/wordlist.txt |
| 11 | + output: scripts/spellcheck_conf/wordlist.dic |
| 12 | + encoding: utf-8 |
| 13 | + pipeline: |
| 14 | + - pyspelling.filters.javascript: |
| 15 | + jsdocs: true |
| 16 | + line_comments: true |
| 17 | + block_comments: true |
| 18 | + group_comments: false |
| 19 | + decode_escapes: true |
| 20 | + strings: false |
| 21 | +- name: HTML |
| 22 | + sources: |
| 23 | + - 'docs/source/**/*.html' |
| 24 | + expect_match: false |
| 25 | + apsell: |
| 26 | + mode: en |
| 27 | + dictionary: |
| 28 | + wordlists: |
| 29 | + - scripts/spellcheck_conf/wordlist.txt |
| 30 | + output: scripts/spellcheck_conf/wordlist.dic |
| 31 | + encoding: utf-8 |
| 32 | + pipeline: |
| 33 | + - pyspelling.filters.html: |
| 34 | + comments: true |
| 35 | + attributes: |
| 36 | + - title |
| 37 | + - alt |
| 38 | + ignores: |
| 39 | + - ':matches(code, pre)' |
| 40 | + - 'code' |
| 41 | + - 'pre' |
| 42 | +- name: Markdown |
| 43 | + expect_match: false |
| 44 | + apsell: |
| 45 | + mode: en |
| 46 | + dictionary: |
| 47 | + wordlists: |
| 48 | + - scripts/spellcheck_conf/wordlist.txt |
| 49 | + output: scripts/spellcheck_conf/wordlist.dic |
| 50 | + encoding: utf-8 |
| 51 | + pipeline: |
| 52 | + - pyspelling.filters.markdown: |
| 53 | + markdown_extensions: |
| 54 | + - markdown.extensions.extra: |
| 55 | + - pyspelling.filters.html: |
| 56 | + comments: true |
| 57 | + attributes: |
| 58 | + - title |
| 59 | + - alt |
| 60 | + ignores: |
| 61 | + - ':matches(code, pre)' |
| 62 | + - 'code' |
| 63 | + - 'pre' |
| 64 | + sources: |
| 65 | + - '**/*.md' |
| 66 | +- name: RST |
| 67 | + expect_match: false |
| 68 | + apsell: |
| 69 | + mode: en |
| 70 | + dictionary: |
| 71 | + wordlists: |
| 72 | + - scripts/spellcheck_conf/wordlist.txt |
| 73 | + output: scripts/spellcheck_conf/wordlist.dic |
| 74 | + encoding: utf-8 |
| 75 | + pipeline: |
| 76 | + - pyspelling.filters.markdown: |
| 77 | + markdown_extensions: |
| 78 | + - markdown.extensions.extra: |
| 79 | + - pyspelling.filters.html: |
| 80 | + comments: true |
| 81 | + attributes: |
| 82 | + - title |
| 83 | + - alt |
| 84 | + ignores: |
| 85 | + - ':matches(code, pre)' |
| 86 | + - 'code' |
| 87 | + - 'pre' |
| 88 | + sources: |
| 89 | + - 'docs/source/**/*.rst' |
| 90 | +- name: python |
| 91 | + pipeline: |
| 92 | + - pyspelling.filters.python: |
| 93 | + strings: true |
| 94 | + sources: |
| 95 | + - "{examples,scripts,torchx}/**/*.py" |
| 96 | + apsell: |
| 97 | + mode: en |
| 98 | + dictionary: |
| 99 | + wordlists: |
| 100 | + - scripts/spellcheck_conf/wordlist.txt |
| 101 | + output: scripts/spellcheck_conf/wordlist.dic |
| 102 | + encoding: utf-8 |
0 commit comments