-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathcspell.json
61 lines (61 loc) · 2.05 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
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"language": "en",
"dictionaryDefinitions": [
{
"name": "main-list",
"path": "./spell/cspell-list.txt"
},
{
"name": "fift-words",
"path": "./spell/cspell-fift-words-adjusted.txt"
},
{
"name": "tvm-instructions",
"path": "./spell/cspell-tvm-instructions.txt"
}
],
"dictionaries": ["main-list", "fift-words", "tvm-instructions"],
"ignoreRegExpList": [
"\\b[xB]\\{[a-fA-F0-9]*_?\\}", // binary literals in Fift-asm
"\\b0[xX][a-fA-F0-9_]*\\b", // hexadecimal numbers
"\\b(?:address|crc32|cell|slice|rawSlice)\\(\".+\"\\)", // some comptime functions
"ince Tact " // regex in RELEASE.md
],
"flagWords": [],
"ignorePaths": [
"*.boc",
"*.fif",
"**/*/output",
"*.spec.ts.snap",
"node_modules",
"dist",
"grammar/sample.json",
"src/generator/writers/writeStdlib.ts",
"src/func/funcfiftlib.*",
"src/grammar/grammar.ohm-bundle.d.ts",
"src/grammar/test/items-native-fun-funcid.tact",
"src/grammar/test/items-asm-funs.tact",
"src/grammar/test-asm/*.tact",
"src/grammar/test-failed/funcid-*.tact",
"src/grammar/next/grammar.gg",
"src/grammar/next/grammar.ts",
"src/stdlib/stdlib.ts",
"src/stdlib/stdlib/stdlib.fc",
"src/test/compilation-failed/const-eval-failed.spec.ts",
"src/test/e2e-emulated/address.spec.ts",
"src/test/e2e-emulated/intrinsics.spec.ts",
"src/test/e2e-emulated/optionals.spec.ts",
"src/test/e2e-emulated/strings.spec.ts",
"src/test/e2e-emulated/contracts/intrinsics.tact",
"src/test/e2e-emulated/contracts/strings.tact",
"src/test/e2e-emulated/contracts/dns.tact",
"src/test/compilation-fail/fail-const-eval.spec.ts",
"src/test/e2e-emulated/getter-names-conflict.spec.ts",
"src/test/exit-codes/contracts/compute-phase-errors.tact",
"src/test/e2e-emulated/map-tests/build",
"src/test/e2e-emulated/map-tests/map-properties-key-value-types.ts",
"/docs"
]
}