-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
spellcheck.yaml
52 lines (52 loc) · 968 Bytes
/
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
matrix:
- name: Vue
sources:
- '**/*.vue'
expect_match: false
aspell:
lang: en
dictionary:
wordlists:
- wordlist.txt
output: wordlist.dic
encoding: utf-8
pipeline:
- pyspelling.filters.javascript:
jsdocs: true
line_comments: true
block_comments: true
group_comments: false
decode_escapes: true
strings: false
- pyspelling.filters.html:
comments: true
attributes:
- title
- alt
ignores:
- ':matches(code, pre)'
- 'code'
- 'pre'
- pyspelling.filters.stylesheets:
group_comments: true
- name: HTML
sources:
- '**/*.html'
expect_match: false
apsell:
mode: en
dictionary:
wordlists:
- wordlist.txt
output: wordlist.dic
encoding: utf-8
pipeline:
- pyspelling.filters.html:
comments: true
attributes:
- title
- alt
ignores:
- ':matches(code, pre)'
- 'code'
- 'pre'