 d5ccb096b5
			
		
	
	
		d5ccb096b5
		
			
		
	
	
	
	
		
			
			# Objective - Remove CHANGELOG.md - it's redundant with the release blog / the git log - it's an extra step that may be forgotten in the release process (it was not updated for the 0.14) - it's an extra file at the root ## Solution - Remove it
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [files]
 | |
| extend-exclude = [
 | |
|   "*.pbxproj", # metadata file
 | |
|   "*.patch",   # Automatically generated files that should not be manually modified.
 | |
| ]
 | |
| 
 | |
| # 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]
 | |
| 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",
 | |
| ]
 |