mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
3fc0c6869d
# Objective - Adopting https://github.com/bevyengine/bevy/pull/12903. ## Solution - Bump crate-ci/typos from 1.19.0 to 1.20.4. - Fixed a typo in `crates/bevy_pbr/src/render/pbr_functions.wgsl` file. - Added "PNG", "iy" and "SME" as exceptions to prevent false positives. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33 lines
1 KiB
TOML
33 lines
1 KiB
TOML
[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]
|
|
iy = "iy" # Variable name used in bevy_gizmos. Probably stands for "y-axis index", as it's being used in loops.
|
|
ser = "ser" # ron::ser - Serializer
|
|
SME = "SME" # Subject Matter Expert
|
|
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
|
|
"PNG", # PNG - Portable Network Graphics file format
|
|
# Used in bevy_mikktspace
|
|
"iFO",
|
|
"vOt",
|
|
"fLenOt",
|
|
]
|