 30d84519a2
			
		
	
	
		30d84519a2
		
			
		
	
	
	
	
		
			
			# Objective Bevy seems to want to standardize on "American English" spellings. Not sure if this is laid out anywhere in writing, but see also #15947. While perusing the docs for `typos`, I noticed that it has a `locale` config option and tried it out. ## Solution Switch to `en-us` locale in the `typos` config and run `typos -w` ## Migration Guide The following methods or fields have been renamed from `*dependants*` to `*dependents*`. - `ProcessorAssetInfo::dependants` - `ProcessorAssetInfos::add_dependant` - `ProcessorAssetInfos::non_existent_dependants` - `AssetInfo::dependants_waiting_on_load` - `AssetInfo::dependants_waiting_on_recursive_dep_load` - `AssetInfos::loader_dependants` - `AssetInfos::remove_dependants_and_labels`
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.3 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
 | |
| 
 | |
| # 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
 | |
| Masia = "Masia" # The surname of one of the authors of SMAA
 | |
| Ba = "Ba"       # Bitangent for Anisotropy
 | |
| ba = "ba"       # Part of an accessor in WGSL - color.ba
 | |
| 
 | |
| # Match Inside a Word - Case Insensitive
 | |
| [default.extend-words]
 | |
| LOD = "LOD" # Level of detail
 | |
| TOI = "TOI" # Time of impact
 | |
| 
 | |
| [default]
 | |
| locale = "en-us"
 | |
| 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",
 | |
| ]
 |