-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.textlintrc.json
66 lines (66 loc) · 1.37 KB
/
.textlintrc.json
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
{
"filters": {
"comments": true
},
"plugins": ["latex2e"],
"rules": {
"alex": {
"allow": ["attacks", "easy", "lies", "period", "special"]
},
"apostrophe": false,
"common-misspellings": {
"ignore": []
},
"diacritics": true,
"doubled-spaces": false,
"editorconfig": false,
"en-capitalization": true,
"en-spell": {
"personalDictionary": [
"DARPA",
"Inferencing",
"SMISC",
"Jernej",
"OneDrive",
"Homebrew",
"dotfiles",
"Jupyter",
"Spitzer",
"Teide",
"Prograde",
"CC0",
"Santeri",
"Viinam",
"Brewfile",
"Pugliese",
"youtube",
"HTML5",
"ar5iv",
"cronjobs",
"doesn"
]
},
"max-number-of-lines": {
"max": 300
},
"no-dead-link": false,
"no-empty-section": true,
"no-start-duplicated-conjunction": {
"interval": 2
},
"no-todo": true,
"stop-words": {
"defaultWords": true,
"exclude": ["discharge"]
},
"terminology": {
"defaultTerms": true
},
"unexpanded-acronym": {
"ignore_acronyms": ["AIP", "GRO", "GSC", "IRAC", "PDF", "STARE", "XVI"],
"min_acronym_len": 3
},
"@textlint-rule/no-duplicate-abbr": true,
"@textlint-rule/no-invalid-control-character": true
}
}