You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							15 lines
						
					
					
						
							682 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							15 lines
						
					
					
						
							682 B
						
					
					
				
								#################################################################
							 | 
						|
								# 强制对使用该基本代码的所有人实施一致的编码样式
							 | 
						|
								#################################################################
							 | 
						|
								
							 | 
						|
								# 顶级配置(即不集成父配置)
							 | 
						|
								root = true
							 | 
						|
								
							 | 
						|
								# 针对所有文件
							 | 
						|
								[*]
							 | 
						|
								charset = utf-8                         # 字符集: utf-8
							 | 
						|
								indent_size = 2                         # 缩进大小: 2
							 | 
						|
								indent_style = space                    # 缩进风格: 空格
							 | 
						|
								end_of_line = lf                        # 行结束符: 换行符
							 | 
						|
								insert_final_newline = true             # 是否在文件的最后插入一个空行
							 | 
						|
								trim_trailing_whitespace = true         # 是否删除行尾的空格
							 | 
						|
								
							 |