mirror of
https://github.com/bevyengine/bevy
synced 2024-12-19 01:23:09 +00:00
a6b5f80715
# Objective Fixes #16610, related to #16702 ## Solution Upgrade typos and its configuration ## Testing - Did you test these changes? If so, how? No - Are there any parts that need more testing? No - How can other people (reviewers) test your changes? Is there anything specific they need to know? No - If relevant, what platforms did you test these changes on, and are there any important ones you can't test? Not applicable
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[files]
|
|
extend-exclude = [
|
|
"*.pbxproj", # metadata file
|
|
"*.patch", # Automatically generated files that should not be manually modified.
|
|
"*.bin", # Binary files
|
|
".git/", # Version control files
|
|
]
|
|
ignore-hidden = false
|
|
|
|
# Match Inside a Word - Case Insensitive
|
|
[default.extend-words]
|
|
LOD = "LOD" # Level of detail
|
|
TOI = "TOI" # Time of impact
|
|
|
|
[default]
|
|
locale = "en-us"
|
|
# Ignored typos regexes
|
|
extend-ignore-identifiers-re = [
|
|
"Ba", # Bitangent for Anisotropy
|
|
"ba", # Part of an accessor in WGSL - color.ba
|
|
"ser", # ron::ser - Serializer
|
|
"SME", # Subject Matter Expert
|
|
"Sur", # macOS Big Sur - South
|
|
"NDK", # NDK - Native Development Kit
|
|
"PNG", # PNG - Portable Network Graphics file format
|
|
"Masia", # The surname of one of the authors of SMAA
|
|
"metalness", # Rendering term (metallicity)
|
|
"inventario", # Inventory in Portuguese
|
|
"[Rr]eparametrize", # Mathematical term in curve context (reparameterize)
|
|
# Used in bevy_mikktspace
|
|
"iFO",
|
|
"vOt",
|
|
"fLenOt",
|
|
]
|