mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Remove most path-based golangci exclusions (#24214)
They are non-obvious and do not survive refactor. Will replace with `//nolint` comments after CI results are in.
This commit is contained in:
		@@ -22,10 +22,10 @@ func FixLanguageStatsToSaveSize(x *xorm.Engine) error {
 | 
			
		||||
	type RepoIndexerType int
 | 
			
		||||
 | 
			
		||||
	const (
 | 
			
		||||
		// RepoIndexerTypeCode code indexer
 | 
			
		||||
		RepoIndexerTypeCode RepoIndexerType = iota // 0
 | 
			
		||||
		// RepoIndexerTypeStats repository stats indexer
 | 
			
		||||
		RepoIndexerTypeStats // 1
 | 
			
		||||
		// RepoIndexerTypeCode code indexer - 0
 | 
			
		||||
		RepoIndexerTypeCode RepoIndexerType = iota //nolint:unused
 | 
			
		||||
		// RepoIndexerTypeStats repository stats indexer - 1
 | 
			
		||||
		RepoIndexerTypeStats
 | 
			
		||||
	)
 | 
			
		||||
 | 
			
		||||
	// RepoIndexerStatus see models/repo_indexer.go
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user