mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 00:02:20 -05:00 
			
		
		
		
	- added new 'make webpack' target - deprecated 'make js' and 'make css' - extend webpack config to load the less files - updated docs I had to rename the source file of `arc-green.less` to avoid generating a useless JS entrypoint via webpack-fix-style-only-entries which would not work with different source/destination filenames. I hear that there should be cleaner solutions possible once we upgrade to Webpack 5. Co-authored-by: zeripath <art27@cantab.net>
		
			
				
	
	
		
			35 lines
		
	
	
		
			448 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			448 B
		
	
	
	
		
			INI
		
	
	
	
	
	
# http://editorconfig.org
 | 
						|
root = true
 | 
						|
 | 
						|
[*]
 | 
						|
charset = utf-8
 | 
						|
insert_final_newline = true
 | 
						|
trim_trailing_whitespace = true
 | 
						|
end_of_line = lf
 | 
						|
 | 
						|
[*.md]
 | 
						|
trim_trailing_whitespace = false
 | 
						|
 | 
						|
[*.go]
 | 
						|
indent_style = tab
 | 
						|
indent_size = 8
 | 
						|
 | 
						|
[*.{tmpl,html}]
 | 
						|
indent_style = tab
 | 
						|
indent_size = 4
 | 
						|
 | 
						|
[*.less]
 | 
						|
indent_style = space
 | 
						|
indent_size = 4
 | 
						|
 | 
						|
[*.{yml,json}]
 | 
						|
indent_style = space
 | 
						|
indent_size = 2
 | 
						|
 | 
						|
[*.js]
 | 
						|
indent_style = space
 | 
						|
indent_size = 2
 | 
						|
 | 
						|
[Makefile]
 | 
						|
indent_style = tab
 |