25 lines
		
	
	
	
		
			690 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			690 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
root = "."
 | 
						|
tmp_dir = ".air"
 | 
						|
 | 
						|
[build]
 | 
						|
cmd = "make --no-print-directory backend"
 | 
						|
bin = "gitea"
 | 
						|
delay = 1000
 | 
						|
include_ext = ["go", "tmpl"]
 | 
						|
include_file = ["main.go"]
 | 
						|
include_dir = ["cmd", "models", "modules", "options", "routers", "services"]
 | 
						|
exclude_dir = [
 | 
						|
  "models/fixtures",
 | 
						|
  "models/migrations/fixtures",
 | 
						|
  "modules/avatar/identicon/testdata",
 | 
						|
  "modules/avatar/testdata",
 | 
						|
  "modules/git/tests",
 | 
						|
  "modules/migration/file_format_testdata",
 | 
						|
  "modules/markup/tests/repo/repo1_filepreview",
 | 
						|
  "routers/private/tests",
 | 
						|
  "services/gitdiff/testdata",
 | 
						|
  "services/migrations/testdata",
 | 
						|
  "services/webhook/sourcehut/testdata",
 | 
						|
]
 | 
						|
exclude_regex = ["_test.go$", "_gen.go$"]
 | 
						|
stop_on_error = true
 |