mirror of
				https://github.com/TriliumNext/Notes.git
				synced 2025-11-04 15:11:31 +08:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
		
			241 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			241 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 
								 | 
							
								//https://prettier.io/docs/en/options.html 
							 | 
						||
| 
								 | 
							
								module.exports = {
							 | 
						||
| 
								 | 
							
									semi: true,
							 | 
						||
| 
								 | 
							
									trailingComma: 'es5',
							 | 
						||
| 
								 | 
							
									singleQuote: true,
							 | 
						||
| 
								 | 
							
									printWidth: 120,
							 | 
						||
| 
								 | 
							
									tabWidth: 4,
							 | 
						||
| 
								 | 
							
									// useTabs: false,
							 | 
						||
| 
								 | 
							
									// bracketSpacing: true,
							 | 
						||
| 
								 | 
							
									// htmlWhitespaceSensitivity: 'ignore',
							 | 
						||
| 
								 | 
							
								};
							 |