This repository has been archived by the owner on Oct 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
spellcheck.yaml
70 lines (68 loc) · 1.98 KB
/
spellcheck.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
matrix:
- name: Markdown
sources:
- README.md
- grpc/clients/*/README.md
default_encoding: utf-8
aspell:
d: en_GB
lang: en
dictionary:
encoding: utf-8
output: pyspelling-md.dic.tmp
wordlists:
- .spelling-md
pipeline:
# Filters: https://github.com/facelessuser/pyspelling/tree/master/docs/src/markdown/filters
- pyspelling.filters.context:
context_visible_first: true
escapes: '\\[\\`]'
delimiters:
# Ignore multiline content between triple backticks
- open: '(?s)^(?P<open>```)'
close: '^(?P=open)$'
# Ignore text between inline back ticks
- open: '(?P<open>`)'
close: '(?P=open)'
- pyspelling.filters.markdown: null
- pyspelling.filters.html:
comments: false
attributes:
- alt
- title
ignores:
- code
- pre
- pyspelling.filters.url: null
- name: Python
sources:
- grpc/clients/js/*.py
- grpc/clients/python/*.py
- grpc/clients/python/tests/*.py
- grpc/clients/python/vegaapiclient/blockchain/*.py
# not: grpc/clients/python/vegaapiclient/generated/**/*.py
- grpc/clients/python/vegaapiclient/*.py
default_encoding: utf-8
aspell:
d: en_GB
lang: en
dictionary:
encoding: utf-8
output: pyspelling-py.dic.tmp
wordlists:
- .spelling-py
pipeline:
- pyspelling.filters.context:
context_visible_first: true
escapes: '\\[\\`]'
delimiters:
# Ignore multiline content between (possibly indented) triple backticks
- open: '(?s)^(?P<open>[ ]*```)'
close: '^(?P=open)$'
# Ignore text between inline back ticks
- open: '(?P<open>`)'
close: '(?P=open)'
- pyspelling.filters.python:
strings: false
comments: false