-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcspell.json
More file actions
73 lines (73 loc) · 1.75 KB
/
Copy pathcspell.json
File metadata and controls
73 lines (73 loc) · 1.75 KB
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
// cSpell Settings
{
// Version of the setting file. Always 0.2
"version": "0.2",
//
"enabled": true,
// language - current active spelling language
"language": "en",
//
"languageSettings": [
{
"languageId": "python",
"includeRegExpList": [
"#.*",
"/[']{3}*?[']{3}/g",
"/[\"]{3}*?[\"]{3}/g"
]
},
{
"languageId": "markdown",
"ignoreRegExpList": [
"[`]{3}(.+\n)+[`]{3}",
"[$]{1,2}.*?[$]{1,2}"
]
},
{
"languageId": "rust" //,
//"includeRegExpList": [
// "[/]{2,3}.*",
// "[/][*]+\n?([\\S\\s]*?)[*][/]"
//]
}
],
// flagWords - list of words to be always considered incorrect
// This is useful for offensive words and common spelling errors.
"flagWords": [
"lenght"
],
//
"enableFiletypes": [
"rust",
"markdown"
],
// Specify paths/files to ignore.
"ignorePaths": [
"cspell.json", // Ignore this file
"**/node_modules", // this will ignore anything the node_modules directory
".git", // Ignore the .git directory
"*.toml" // Ignore all .toml files.
],
// words - list of words to be always considered correct
"words": [
"aminoacid",
"bijective",
"bindgen",
"Bioinformatics",
"bioseq",
"biosequence",
"BLOSUM",
"clippy",
"IUPAC",
"Needleman",
"pairwasm",
"PAM",
"repr",
"rustfmt",
"Smith",
"tamasfe",
"vadimcn",
"Waterman",
"Wunsch"
]
}