| 
									
										
										
										
											2020-04-24 16:29:53 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2020-04-24 16:29:53 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {join} from 'path'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {getRepoBaseDir} from '../../utils/config'; | 
					
						
							| 
									
										
										
										
											2020-05-20 14:19:17 -07:00
										 |  |  | import {error} from '../../utils/console'; | 
					
						
							| 
									
										
										
										
											2020-04-24 16:29:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | import {Formatter} from './base-formatter'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Formatter for running clang-format against Typescript and Javascript files | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | export class ClangFormat extends Formatter { | 
					
						
							|  |  |  |   name = 'clang-format'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   binaryFilePath = join(getRepoBaseDir(), 'node_modules/.bin/clang-format'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   defaultFileMatcher = ['**/*.{t,j}s']; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   actions = { | 
					
						
							|  |  |  |     check: { | 
					
						
							|  |  |  |       commandFlags: `--Werror -n -style=file`, | 
					
						
							|  |  |  |       callback: | 
					
						
							|  |  |  |           (_: string, code: number) => { | 
					
						
							|  |  |  |             return code !== 0; | 
					
						
							|  |  |  |           }, | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |     format: { | 
					
						
							|  |  |  |       commandFlags: `-i -style=file`, | 
					
						
							|  |  |  |       callback: | 
					
						
							|  |  |  |           (file: string, code: number, _: string, stderr: string) => { | 
					
						
							|  |  |  |             if (code !== 0) { | 
					
						
							| 
									
										
										
										
											2020-05-20 14:19:17 -07:00
										 |  |  |               error(`Error running clang-format on: ${file}`); | 
					
						
							|  |  |  |               error(stderr); | 
					
						
							|  |  |  |               error(); | 
					
						
							| 
									
										
										
										
											2020-04-24 16:29:53 -07:00
										 |  |  |               return true; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | } |