mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	
		
			
	
	
		
			10 lines
		
	
	
		
			203 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			203 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| 
								 | 
							
								#!/bin/bash
							 | 
						||
| 
								 | 
							
								# Runs astyle with parameters which should be checked in a pre-commit hook
							 | 
						||
| 
								 | 
							
								astyle \
							 | 
						||
| 
								 | 
							
									--style=otbs \
							 | 
						||
| 
								 | 
							
									--indent=spaces=4 \
							 | 
						||
| 
								 | 
							
									--convert-tabs \
							 | 
						||
| 
								 | 
							
									--keep-one-line-statements \
							 | 
						||
| 
								 | 
							
									--pad-header \
							 | 
						||
| 
								 | 
							
									"$@"
							 |