-
Notifications
You must be signed in to change notification settings - Fork 154
/
.pyspelling.yml
49 lines (49 loc) · 1.17 KB
/
.pyspelling.yml
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
matrix:
- name: Markdown
aspell:
lang: en
# ignore-case: true
dictionary:
encoding: utf-8
wordlists:
- .wordlist-md
output: scratch/dictionary.dic
pipeline:
- pyspelling.filters.markdown:
- pyspelling.filters.html:
comments: false
ignores:
- code
- pre
sources:
- '!**/INFO.md|!**/TODO.md|!venv/**|!scratch/**|!*/charts/**|**/*.md'
default_encoding: utf-8
# - name: Scripts
# aspell:
# lang: en
# dictionary:
# encoding: utf-8
# wordlists:
# - .wordlist-md
# - .wordlist-sh
# output: scratch/dictionary.dic
# pipeline:
# - pyspelling.filters.text:
# sources:
# - '!venv/**|!scratch/**|!*/wip/**|**/*.sh'
# default_encoding: utf-8
# - name: Python
# aspell:
# lang: en
# # ignore-case: true
# dictionary:
# encoding: utf-8
# wordlists:
# - .wordlist-md
# - .wordlist-sh
# output: scratch/dictionary.dic
# pipeline:
# - pyspelling.filters.python:
# sources:
# - '!venv/**|!scratch/**|**/*.py'
# default_encoding: utf-8