mirror of
				https://github.com/tailscale/tailscale.git
				synced 2025-11-04 02:01:14 +01:00 
			
		
		
		
	This adds an initial and intentionally minimal configuration for golang-ci, fixes the issues reported, and adds a GitHub Action to check new pull requests against this linter configuration. Signed-off-by: Andrew Dunham <andrew@du.nham.ca> Change-Id: I8f38fbc315836a19a094d0d3e986758b9313f163
		
			
				
	
	
		
			13 lines
		
	
	
		
			284 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			284 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright (c) Tailscale Inc & AUTHORS
 | 
						|
// SPDX-License-Identifier: BSD-3-Clause
 | 
						|
 | 
						|
//go:build for_go_mod_tidy_only
 | 
						|
 | 
						|
package tooldeps
 | 
						|
 | 
						|
import (
 | 
						|
	_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
 | 
						|
	_ "github.com/tailscale/depaware/depaware"
 | 
						|
	_ "golang.org/x/tools/cmd/goimports"
 | 
						|
)
 |