mirror of
				https://github.com/zokradonh/kopano-docker
				synced 2025-11-04 04:17:27 +00:00 
			
		
		
		
	* rename check-scripts target to lint * install yamllint through pip on travis * add yamllint config, do not fail on too long lines * fix yaml linting errors * remove circular dependency
		
			
				
	
	
		
			8 lines
		
	
	
		
			137 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			137 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
extends: default
 | 
						|
 | 
						|
rules:
 | 
						|
  # 80 chars should be enough, but don't fail if a line is longer
 | 
						|
  line-length:
 | 
						|
    max: 80
 | 
						|
    level: warning
 |