31 lines
		
	
	
		
			860 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			860 B
		
	
	
	
		
			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]
 | |
| ser = "ser" # ron::ser - Serializer
 | |
| 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
 | |
|   # Used in bevy_mikktspace
 | |
|   "iFO",
 | |
|   "vOt",
 | |
|   "fLenOt",
 | |
| ]
 | 
