mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Enable more revive linter rules (#30608)
				
					
				
			Noteable additions: - `redefines-builtin-id` forbid variable names that shadow go builtins - `empty-lines` remove unnecessary empty lines that `gofumpt` does not remove for some reason - `superfluous-else` eliminate more superfluous `else` branches Rules are also sorted alphabetically and I cleaned up various parts of `.golangci.yml`.
This commit is contained in:
		| @@ -86,12 +86,13 @@ func renderRepoFileCodePreview(ctx context.Context, opts markup.RenderCodePrevie | ||||
| 	lineNums := make([]int, 0, lineCount) | ||||
| 	lineCodes := make([]string, 0, lineCount) | ||||
| 	for i := opts.LineStart; i <= opts.LineStop; i++ { | ||||
| 		if line, err := reader.ReadString('\n'); err != nil && line == "" { | ||||
| 		line, err := reader.ReadString('\n') | ||||
| 		if err != nil && line == "" { | ||||
| 			break | ||||
| 		} else { | ||||
| 			lineNums = append(lineNums, i) | ||||
| 			lineCodes = append(lineCodes, line) | ||||
| 		} | ||||
|  | ||||
| 		lineNums = append(lineNums, i) | ||||
| 		lineCodes = append(lineCodes, line) | ||||
| 	} | ||||
| 	realLineStop := max(opts.LineStart, opts.LineStart+len(lineNums)-1) | ||||
| 	highlightLines := code.HighlightSearchResultCode(opts.FilePath, language, lineNums, strings.Join(lineCodes, "")) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user