mirror of
				https://github.com/imgproxy/imgproxy.git
				synced 2025-10-30 23:08:02 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			763 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			763 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| run:
 | |
|   skip-dirs:
 | |
|     - .tmp
 | |
|     - vendor
 | |
| 
 | |
| linters:
 | |
|   disable-all: true
 | |
|   enable:
 | |
|     - deadcode
 | |
|     # - errcheck
 | |
|     - gocritic
 | |
|     # - goconst
 | |
|     - goimports
 | |
|     - gosimple
 | |
|     - govet
 | |
|     - ineffassign
 | |
|     - staticcheck
 | |
|     - structcheck
 | |
|     - stylecheck
 | |
|     - typecheck
 | |
|     - unused
 | |
|     - varcheck
 | |
| 
 | |
| linters-settings:
 | |
|   govet:
 | |
|     # report about shadowed variables
 | |
|     check-shadowing: true
 | |
| 
 | |
| issues:
 | |
|   exclude-rules:
 | |
|     # - path: _test\.go
 | |
|     #   linters:
 | |
|     #     - goconst
 | |
| 
 | |
|     # False positives on CGO generated code
 | |
|     - linters: [staticcheck]
 | |
|       text: "SA4000:"
 | |
|       path: vips/*
 | |
| 
 | |
|     # False positives on CGO generated code
 | |
|     - linters: [gocritic]
 | |
|       text: "dupSubExpr"
 | |
|       path: vips/*
 | |
| 
 | |
|     - linters: [stylecheck]
 | |
|       text: "ST1005:"
 |