-
Notifications
You must be signed in to change notification settings - Fork 1
/
typos.toml
35 lines (33 loc) · 832 Bytes
/
typos.toml
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
[default.extend-words]
gir = "gir"
numer = "numer" # numerator
inout = "inout"
seeked = "seeked"
BA = "BA" # sdp_message.rs
UE = "UE" # rtsp-server-record.rs
subtiles = "subtiles"
[default]
extend-ignore-identifiers-re = [
"GST_MTS_TABLE_ID_14496_OBJET_DESCRIPTOR",
# gst_rtsp_media_factory_is_stop_on_disonnect
".*is_stop_on_disonnect",
"ser_de", # gstreamer/CHANGELOG.md
# FFMpeg prefixes
"anc", "Anc"
]
[files]
extend-exclude = [
# don't check dot and gir files
"*.gir",
"*.dot",
# don't check submodules
"gir/*",
"gir-files/*",
"gst-gir-files/*",
# versions.txt are generated and contain git hash objects
"versions.txt",
# can't fix typos in generated code as the typo is likely in the C API
"*/src/auto/*.rs",
"*/sys/src/lib.rs",
"*/sys/tests/*",
]