File size: 1,204 Bytes
db5855f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
spellchecker: aspell

matrix:
  - name: markdown
    aspell:
      lang: en
      d: en_US
    dictionary:
      wordlists:
        - .ci/spellcheck/.pyspelling.wordlist.txt
      output: .ci/spellcheck/dictionary/pyspelling.dic
    pipeline:
      - pyspelling.filters.url
      - pyspelling.filters.markdown:
          markdown_extensions:
            - markdown.extensions.extra
      - pyspelling.filters.html:
          comments: false
          ignores:
            - code
            - pre
            - spell
    sources:
      - README.md
      - CONTRIBUTING.md
      - notebooks/**/README.md

  - name: notebooks
    aspell:
      lang: en
      d: en_US
    dictionary:
      wordlists:
        - .ci/spellcheck/.pyspelling.wordlist.txt
      output: .ci/spellcheck/dictionary/pyspelling.dic
    pipeline:
      - ipynb_filter
      - pyspelling.filters.url
      - pyspelling.filters.markdown:
          markdown_extensions:
            - markdown.extensions.extra
      - pyspelling.filters.html:
          comments: false
          ignores:
            - code
            - pre
            - spell
    sources:
      - notebooks/**/*.ipynb