-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.cspell.json
85 lines (85 loc) · 1.68 KB
/
.cspell.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"version": "0.2",
"enabled": true,
"language": "en-US",
"enabledLanguageIds": [
"cpp",
"markdown",
"r",
"rmarkdown",
"yaml"
],
"ignorePaths": [
".git",
".vscode",
"R/RcppExports.R",
"scr/RcppExports.cpp"
],
"words": [
"comonotone",
"comonotonicity",
"parametrizations",
"subordinator",
"nondecreasing",
"submodel",
"Borel",
"Khintchine",
"Kolmogorov",
"Lévy",
"Markovian",
"Marshall",
"Olkin",
"Sloot",
"Smirnov",
"Stieltjes"
],
"ignoreWords": [
"Rcpp",
"testthat",
"Rdpack",
"roxygen2",
"rmolib",
"usethis",
"ESM",
"AM",
"MDCM",
"LFM",
"LTDC",
"cscale",
"exmo",
"extmo",
"armextmo"
],
"ignoreRegExpList": [
"/\\\\\\b\\w+\\b/g",
"/\\b(Rcpp__|)r\\w+mo(|_\\w+)\\b/g",
"/\\brjump_\\w+\\b/g",
"/\\br(jump|posval|pareto)\\b/g",
"/#' @\\b\\w+\\b/g"
],
"languageSettings": [
{
"languageId": "r",
"ignoreWords": [
"nolint",
"nocov",
"qassert",
"qtest",
"reprompt"
],
"ignoreRegExpList": [
]
},
{
"languageId": "cpp",
"ignoreWords": [
"LGLSXP",
"INTSXP",
"REALSXP",
"revsort"
],
"ignoreRegExpList": [
]
}
]
}