mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			283 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			283 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| //https://prettier.io/docs/en/options.html
 | |
| module.exports = {
 | |
| 	semi: true,
 | |
| 	trailingComma: 'none',
 | |
| 	singleQuote: true,
 | |
| 	printWidth: 100,
 | |
| 	tabWidth: 4,
 | |
| 	useTabs: false,
 | |
| 	quoteProps: "as-needed",
 | |
| 	bracketSpacing: true,
 | |
| 	arrowParens: "avoid"
 | |
| 	// htmlWhitespaceSensitivity: 'ignore',
 | |
| };
 |