29 lines
		
	
	
		
			379 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			379 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package commands
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/golangci/golangci-lint/pkg/config"
 | 
						|
	"github.com/spf13/cobra"
 | 
						|
)
 | 
						|
 | 
						|
type Executor struct {
 | 
						|
	rootCmd *cobra.Command
 | 
						|
 | 
						|
	cfg *config.Config
 | 
						|
}
 | 
						|
 | 
						|
func NewExecutor() *Executor {
 | 
						|
	e := &Executor{
 | 
						|
		cfg: config.NewDefault(),
 | 
						|
	}
 | 
						|
 | 
						|
	e.initRoot()
 | 
						|
	e.initRun()
 | 
						|
	e.initLinters()
 | 
						|
 | 
						|
	return e
 | 
						|
}
 | 
						|
 | 
						|
func (e Executor) Execute() error {
 | 
						|
	return e.rootCmd.Execute()
 | 
						|
}
 |