forked from microsoft/Quantum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell.json
35 lines (31 loc) · 907 Bytes
/
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
// This configuration file sets options for spell-checking pull requests
// onto this repository. Please see
// https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell#cspelljson
// for more documentation about this config file.
{
"ignoreWords": [
// .NET terminology
"xunit",
// Terms that come up in build / CI configuration.
"logissue", // Used in ##[vso.logissue] commands.
"pwsh",
"markdownlint",
// Words, terms, and names specific to quantum computing.
"CNOT",
"Chuang",
"eigenstate",
"qubit",
"qubits",
"qubit's",
"qubitization",
"qubitized",
// Chemistry terminology
"nitrogenase",
"Hartree",
"Fock"
],
"flagWords": [
// The Trotter–Suzuki decomposition isn't a verb.
"Trotterization"
]
}