14 lines
		
	
	
		
			264 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			264 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
|   singleQuote: true,
 | |
|   useTabs: false,
 | |
|   printWidth: 140,
 | |
|   tabWidth: 2,
 | |
|   semi: true,
 | |
|   htmlWhitespaceSensitivity: 'strict',
 | |
|   arrowParens: 'avoid',
 | |
|   bracketSpacing: true,
 | |
|   proseWrap: 'preserve',
 | |
|   trailingComma: 'none',
 | |
|   endOfLine: 'lf'
 | |
| };
 |