forked from qir-alliance/pyqir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell.json
45 lines (40 loc) · 1.16 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
// 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": [
// The name of the package itself.
"pyqir",
"qirlib",
// General quantum terminology.
"qubit",
"qubits",
// General classical terminology.
"codegen",
"toolchain",
// Python and Rust specific terminology.
"maturin",
"venv",
"virtualenv",
"pytest",
"cdylib",
"conda",
"pypa",
"manylinux",
"rustfmt",
"clippy",
// LLVM terminology and keywords.
"entrypoint",
// CI and build pipeline terminology.
"ccache",
"sccache",
"pwsh"
],
// By definition, everything in flagWords is considered to be spelled
// wrong. Thus we disable spell checking for the list of misspelled words...
// cspell:disable
"flagWords": [
]
// cspell:enable
}