mirror of
				https://github.com/continew-org/continew-admin.git
				synced 2025-10-31 00:57:13 +08:00 
			
		
		
		
	endOfLine: 'auto',自动检测行尾符,根据当前操作系统自动选择行尾符。例如:Windows 上的行尾符是 CRLF(\r\n),而 Unix 和 Linux 上的行尾符是 LF(\n)。
		
			
				
	
	
		
			11 lines
		
	
	
		
			211 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			211 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
|   tabWidth: 2,
 | |
|   semi: true,
 | |
|   printWidth: 80,
 | |
|   singleQuote: true,
 | |
|   quoteProps: 'consistent',
 | |
|   htmlWhitespaceSensitivity: 'strict',
 | |
|   vueIndentScriptAndStyle: true,
 | |
|   endOfLine: 'auto',
 | |
| };
 |