Vite is a build tool, it consists of two major parts [1]: - A dev server that provides rich feature enhancements over native ES modules, for example extremely fast Hot Module Replacement (HMR). - A build command that bundles your code with Rollup, pre-configured to output highly optimized static assets for production. [1] https://vite.dev/guide/ Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
		
			
				
	
	
		
			50 lines
		
	
	
		
			680 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			680 B
		
	
	
	
		
			INI
		
	
	
	
	
	
# https://editorconfig.org/
 | 
						|
 | 
						|
root = true
 | 
						|
 | 
						|
[*]
 | 
						|
indent_style = space
 | 
						|
indent_size = 4
 | 
						|
insert_final_newline = true
 | 
						|
trim_trailing_whitespace = true
 | 
						|
end_of_line = lf
 | 
						|
charset = utf-8
 | 
						|
 | 
						|
[*.py]
 | 
						|
max_line_length = 119
 | 
						|
 | 
						|
[*.html]
 | 
						|
indent_size = 4
 | 
						|
 | 
						|
[*.css]
 | 
						|
indent_size = 2
 | 
						|
 | 
						|
[*.less]
 | 
						|
indent_size = 2
 | 
						|
 | 
						|
[*.js]
 | 
						|
indent_size = 2
 | 
						|
 | 
						|
[*.json]
 | 
						|
indent_size = 2
 | 
						|
insert_final_newline = ignore
 | 
						|
 | 
						|
# Minified JavaScript files shouldn't be changed
 | 
						|
[**.min.js]
 | 
						|
indent_style = ignore
 | 
						|
insert_final_newline = ignore
 | 
						|
 | 
						|
# Makefiles always use tabs for indentation
 | 
						|
[Makefile]
 | 
						|
indent_style = tab
 | 
						|
 | 
						|
# Batch files use tabs for indentation
 | 
						|
[*.bat]
 | 
						|
indent_style = tab
 | 
						|
 | 
						|
[docs/**.rst]
 | 
						|
max_line_length = 79
 | 
						|
 | 
						|
[*.yml]
 | 
						|
indent_size = 2
 |