Changes the configuration to regroup all includes. The include groups will be (in this order): 1. (in .cc): Include of the corresponding header 2. Includes of C++ standard library headers 3. Includes of other external headers 4. Includes of local headers
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			237 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			237 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # Use the Google style in this project.
 | |
| BasedOnStyle: Google
 | |
| DerivePointerAlignment: false
 | |
| PointerAlignment: Left
 | |
| IncludeCategories:
 | |
|   - Regex: '^<.*\.h>'
 | |
|     Priority: 2
 | |
|   - Regex: '^<.*'
 | |
|     Priority: 1
 | |
|   - Regex: '.*'
 | |
|     Priority: 3
 |