 e32f2f3f8d
			
		
	
	
		e32f2f3f8d
		
			
		
	
	
	
	
		
			
			Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com> Co-authored-by: Simon Sawert <simon@sawert.se>
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package golinters
 | |
| 
 | |
| import (
 | |
| 	"github.com/bombsimon/wsl/v4"
 | |
| 	"golang.org/x/tools/go/analysis"
 | |
| 
 | |
| 	"github.com/golangci/golangci-lint/pkg/config"
 | |
| 	"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
 | |
| )
 | |
| 
 | |
| func NewWSL(settings *config.WSLSettings) *goanalysis.Linter {
 | |
| 	var conf *wsl.Configuration
 | |
| 	if settings != nil {
 | |
| 		conf = &wsl.Configuration{
 | |
| 			StrictAppend:                     settings.StrictAppend,
 | |
| 			AllowAssignAndCallCuddle:         settings.AllowAssignAndCallCuddle,
 | |
| 			AllowAssignAndAnythingCuddle:     settings.AllowAssignAndAnythingCuddle,
 | |
| 			AllowMultiLineAssignCuddle:       settings.AllowMultiLineAssignCuddle,
 | |
| 			ForceCaseTrailingWhitespaceLimit: settings.ForceCaseTrailingWhitespaceLimit,
 | |
| 			AllowTrailingComment:             settings.AllowTrailingComment,
 | |
| 			AllowSeparatedLeadingComment:     settings.AllowSeparatedLeadingComment,
 | |
| 			AllowCuddleDeclaration:           settings.AllowCuddleDeclaration,
 | |
| 			AllowCuddleWithCalls:             settings.AllowCuddleWithCalls,
 | |
| 			AllowCuddleWithRHS:               settings.AllowCuddleWithRHS,
 | |
| 			ForceCuddleErrCheckAndAssign:     settings.ForceCuddleErrCheckAndAssign,
 | |
| 			ErrorVariableNames:               settings.ErrorVariableNames,
 | |
| 			ForceExclusiveShortDeclarations:  settings.ForceExclusiveShortDeclarations,
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	a := wsl.NewAnalyzer(conf)
 | |
| 
 | |
| 	return goanalysis.NewLinter(
 | |
| 		a.Name,
 | |
| 		a.Doc,
 | |
| 		[]*analysis.Analyzer{a},
 | |
| 		nil,
 | |
| 	).WithLoadMode(goanalysis.LoadModeSyntax)
 | |
| }
 |