This repository was archived by the owner on Jul 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_typos.toml
More file actions
51 lines (48 loc) · 1.79 KB
/
Copy path_typos.toml
File metadata and controls
51 lines (48 loc) · 1.79 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
# typos spell-checker config (monorepo root). Merged best-of-breed from the
# former per-app configs (register/_typos.toml, despeckle/_typos.toml,
# tate-yoko-pdf/.typos.toml) — the exclusion lists and extend-words are the
# union across all three apps.
[files]
# Skip binaries and generated/vendored files: typos would scan the Gradle
# wrapper jar byte-for-byte and flag random byte sequences as misspellings.
# Entries are gitignore-style, so a bare "build/" matches every module's build
# directory at any depth.
extend-exclude = [
"*.pbm",
"*.pdf",
"*.jar",
"gradlew",
"gradlew.bat",
"gradle/wrapper/",
"**/*.lock",
"build/",
".gradle/",
".gradle-home/",
]
[default]
locale = "en-us"
[default.extend-words]
# Short tokens / romaji that look like typos but are intentional.
ruby = "ruby"
mmap = "mmap"
# mingw runtime DLL name `libgcc_s_seh-1` (SEH = Structured Exception Handling),
# bundled into the Windows self-contained images.
seh = "seh"
# プロジェクト固有の語(typo に見えるが正しい)
sakashita = "sakashita"
yoko = "yoko"
tate = "tate"
# 技術設計書のシーケンス図で Strategy の短縮名として使っている
strat = "strat"
# Gradle CLI: `-P<prop>` で project property を指定する記法(typos は Pageant 誤字と誤検知)
Pagent = "Pagent"
# org.verapdf API names (en-GB), cannot rename — these are third-party identifiers
# our PdfAConformanceTest must call verbatim: the `org.verapdf.pdfa.flavours`
# package, the `PDFAFlavour` type, and `VeraGreenfieldFoundryProvider.initialise()`.
Flavour = "Flavour"
flavours = "flavours"
initialise = "initialise"
# The PDF spec's own key name `DecodeParms` (and PDFBox's COSName.DECODE_PARMS
# constant mirroring it) — third-party/spec identifiers we must name verbatim.
Parms = "Parms"
PARMS = "PARMS"