13 lines
		
	
	
		
			464 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			464 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//args: -Enolintlint -Evarcheck
 | 
						|
//config: linters-settings.nolintlint.allow-unused=false
 | 
						|
//expected_linter: nolintlint
 | 
						|
package testdata
 | 
						|
 | 
						|
import "fmt"
 | 
						|
 | 
						|
func Foo() {
 | 
						|
	fmt.Println("unused")          // nolint // ERROR "directive `//nolint .*` is unused"
 | 
						|
	fmt.Println("unused,specific") // nolint:varcheck // ERROR "directive `//nolint:varcheck .*` is unused for linter varcheck"
 | 
						|
	fmt.Println("not run")         // nolint:unparam // unparam is not run so this is ok
 | 
						|
}
 |