-
Notifications
You must be signed in to change notification settings - Fork 612
Expand file tree
/
Copy path_typos.toml
More file actions
40 lines (37 loc) · 1.01 KB
/
Copy path_typos.toml
File metadata and controls
40 lines (37 loc) · 1.01 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
[files]
extend-exclude = [
"**/src/locales/",
"apps/frontend/",
"patches/",
"packages/utils/",
"packages/ui/",
"packages/blog/",
# contains payment card IDs like `IY1VMST1MOXS` which are flagged
"apps/labrinth/src/queue/payouts/mod.rs",
"apps/app-frontend/src/components/ui/settings/instances/game-settings-modal/languages.ts"
]
[default]
extend-ignore-re = [
# Ignore lines that end with `// typos:ignore`
"(?Rm)^.*(#|//)\\s*typos:ignore$",
# Ignore the line after `// typos:ignore`:
"(#|//)\\s*typos:ignore\\n.*",
# Ignore blocks between `// typos:off` and `// typos:on`
"(?s)(#|//)\\s*typos:off.*?\\n\\s*(#|//)\\s*typos:on",
]
[default.extend-words]
# Terms Of Use in `tou-link`
tou = "tou"
# Google Ad Manager
gam = "gam"
# short for "constants"
consts = "consts"
# short for "Copy"
Cpy = "Cpy"
# NoDerivatives in SPDX license identifiers
ND = "ND"
[default.extend-identifiers]
# BTA dependency project name
HalpLibe = "HalpLibe"
# Constant from the `zip` crate
ZIP64_BYTES_THR = "ZIP64_BYTES_THR"