forked from ton-community/ton-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcspell.json
More file actions
63 lines (63 loc) · 1.76 KB
/
cspell.json
File metadata and controls
63 lines (63 loc) · 1.76 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
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"language": "en",
"files": [
"**/*.{md,mdx}",
"**/*.{js,ts}",
"**/*.{jsx,tsx}"
],
"dictionaries": [
"tvm-instructions",
"allow-list"
],
"dictionaryDefinitions": [
{
"name": "tvm-instructions",
"path": "./src/grammar/tvm-dictionary.txt"
},
{
"name": "allow-list",
"path": "./src/grammar/allow-list-dictionary.txt"
}
],
"flagWords": [
"SSmart->Smart",
],
"ignoreRandomStrings": true,
"ignoreRegExpList": [
"^\\[.+?\\]: .+$", // link declarations like [foo]: /ref/stdlib-ownable#bar
"\\[.+?\\]\\[.+?\\]", // links like [`Resumable{:tact}`][res]
"\\[.+?\\]\\(.+?\\)", // links like [`self.toCell().asSlice(){:tact}`](/ref/core-cells#cellasslice)
"\\[#.+?\\]", // [#nativereserve-combining-modes-with-flags]
"\\{#.+?\\}", // {#some-other-custom-heading-link}
"=\".+?\"", // ="/cookbook/dexes/stonfi"
"\".+?\\.(?:png|svg|jpg|jpeg|mp4)(?:[#?].+?)?\"", // "/some/asset/link.png"
"mathrm\\{.+?\\}", // LaTeX subset
"`.+?`", // single-line code snippets
"/^([ \t]*`{3,}).*([\\s\\S]*?)^\\1$/gmx", // code blocks
"[Tt]on[a-zA-Z]+", // Ton/ton-prefixed names of products
],
"ignorePaths": [
"build",
"scripts",
"static",
"node_modules",
"package.json",
"cspell.json",
"docusaurus.config.js",
"prism-theme.js",
"src",
"deployment",
"docs/learn/tvm-instructions/instructions.csv",
"docs/learn/tvm-instructions/generate_md.py",
"docs/v3/documentation/smart-contracts/tolk/tolk-vs-func/stdlib.mdx",
"sidebars.js",
"sidebars",
"i18n",
".husky",
"3rd/*",
".github/*",
"crowdin*.yml"
]
}