-
Notifications
You must be signed in to change notification settings - Fork 8
/
cspell.json
60 lines (60 loc) · 1.83 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
// cSpell Settings
{
// Version of the setting file. Always 0.1
"version": "0.1",
// language - current active spelling language
"language": "en-GB",
// words - list of words to be always considered correct
"dictionaries": [
"en-gb",
"softwareTerms",
"node",
"npm",
"typescript", // inc. JS
"python"
],
"enabledLanguageIds": [
"markdown",
"plaintext",
"text",
"yml",
"javascript",
"python"
],
"words": [
// Packages, libraries, technologies
"bluetooth",
"color", // Common Americanised spelling in libraries
"comms", // Short-hand for "Communications"
"imread", // OpenCV method name
"imshow", // OpenCV method name
"imwrite", // OpenCV method name
"lite", // Common in AI/ML model names
"multiline", // ESLint
"OpenCV's",
"pbtxt", // File extension: TensorFlow Graph Text
"realpath", // Pyhton: os.path.realpath()
"RPiBot", // Project synonym
"ssdlite", // TensorFlow model names
"timeit", // Python module
"unexport", // onoff package
"Pipfile", // Python
// Missing correct English words
"cleanup",
"discoverability",
"quadcopter",
"setup",
"shutdown"
],
// flagWords - list of words to be always considered incorrect
// This is useful for offensive words and common spelling errors.
"flagWords": [],
// ignorePaths - a list of globs to specify which files are to be ignored.
"ignorePaths": [
"**/node_modules/**",
"./*.json",
// TensorFlow graph config generator files, used when generating/adding
// a new model (also ignored in .gitignore).
"./models/tf_text_graph*.py"
]
}