๐Ÿ“ฆ bevyengine / bevy-website

๐Ÿ“„ typos.toml ยท 51 lines
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[files]
extend-exclude = [
  # To keep Changelog consistency between the commit history/PRs.
  # Ignore 0.1 to 0.13 bevy versions.
  "content/news/*-bevy-0.[1-9]/index.md",
  "content/news/*-bevy-0.1[0-3]/index.md",
  "content/learn/migration-guides/0.[1-8]-to-0.[2-9].md",
  "content/learn/migration-guides/0.9-to-0.10.md",
  "content/learn/migration-guides/0.1[0-2]-to-0.1[1-3].md",
  # Ignore specific migration guides that fix typos or truncate titles.
  "release-content/0.14/migration-guides/_guides.toml",
  "release-content/0.14/migration-guides/12038_fix_some_typos.md",
  "release-content/0.14/migration-guides/13261_More_gizmos_builders.md",
  "release-content/0.14/migration-guides/13654_Rename_point_light_to_clusterable_object_in_cluster_contex.md",
  # Ignore contributor files as those are usernames
  "release-content/*/contributors.toml",
  # Ignore changelogs and release notes (titles should be verbatim)
  "release-content/*/changelog.toml",
  "release-content/*/_release-notes.toml",
]

# Corrections take the form of a key/value pair. The key is the incorrect word
# and the value is the correct word. If the key and value are the same, the
# word is treated as always correct. If the value is an empty string, the word
# is treated as always incorrect.

# Match Whole Word - Case Sensitive
[default.extend-identifiers]
ser = "ser" # ron::ser - Serializer
Rin = "Rin" # Name

# Match Inside a Word - Case Insensitive
[default.extend-words]
LOD = "LOD" # Level of detail
SME = "SME" # Subject Matter Expert
reparametrize = "reparametrize" # `CurveExt::reparametrize()`

# names
[default]
extend-ignore-identifiers-re = [
  "2nd",   # Second
  "optin", # Opt-in
  # Contributor Names
  "TehPers",
  "AlisCode",
  "Sasy00",
  "BorMor",
  "IsseW",
  "JusSchw",
]