mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 06:17:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			543 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			543 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| naming:
 | |
|   FunctionNaming:
 | |
|     functionPattern: '[a-z][a-zA-Z0-9]*'
 | |
|     ignoreAnnotated: [ 'Composable' ]
 | |
|   TopLevelPropertyNaming:
 | |
|     constantPattern: '[A-Z][A-Za-z0-9]*'
 | |
| 
 | |
| complexity:
 | |
|   LongMethod:
 | |
|     ignoreAnnotated: [ 'Composable' ]
 | |
|   LongParameterList:
 | |
|     ignoreDefaultParameters: true
 | |
|     ignoreAnnotated: [ 'Composable' ]
 | |
| 
 | |
| style:
 | |
|   MagicNumber:
 | |
|     ignorePropertyDeclaration: true
 | |
|     ignoreCompanionObjectPropertyDeclaration: true
 | |
|   ReturnCount:
 | |
|     excludeGuardClauses: true
 | |
|   UnusedPrivateMember:
 | |
|     ignoreAnnotated: [ 'Preview' ]
 |