2024-02-26 16:19:40 +00:00
|
|
|
[files]
|
|
|
|
extend-exclude = [
|
|
|
|
"*.pbxproj", # metadata file
|
|
|
|
"CHANGELOG.md", # To keep consistency between the commit history/PRs.
|
|
|
|
]
|
|
|
|
|
|
|
|
# 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]
|
2024-04-08 15:31:11 +00:00
|
|
|
iy = "iy" # Variable name used in bevy_gizmos. Probably stands for "y-axis index", as it's being used in loops.
|
2024-02-26 16:19:40 +00:00
|
|
|
ser = "ser" # ron::ser - Serializer
|
2024-04-08 15:31:11 +00:00
|
|
|
SME = "SME" # Subject Matter Expert
|
2024-02-26 16:19:40 +00:00
|
|
|
Sur = "Sur" # macOS Big Sur - South
|
|
|
|
|
|
|
|
# Match Inside a Word - Case Insensitive
|
|
|
|
[default.extend-words]
|
|
|
|
LOD = "LOD" # Level of detail
|
|
|
|
TOI = "TOI" # Time of impact
|
|
|
|
|
|
|
|
[default]
|
|
|
|
extend-ignore-identifiers-re = [
|
|
|
|
"NDK", # NDK - Native Development Kit
|
|
|
|
"inventario", # Inventory in Portuguese
|
2024-04-08 15:31:11 +00:00
|
|
|
"PNG", # PNG - Portable Network Graphics file format
|
2024-02-26 16:19:40 +00:00
|
|
|
# Used in bevy_mikktspace
|
|
|
|
"iFO",
|
|
|
|
"vOt",
|
|
|
|
"fLenOt",
|
|
|
|
]
|