18 lines
		
	
	
		
			241 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			241 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: golang-ci
 | 
						|
 | 
						|
linters-settings:
 | 
						|
  errcheck:
 | 
						|
    #exclude: /path/to/file.txt
 | 
						|
 | 
						|
linters:
 | 
						|
  disable-all: true
 | 
						|
  enable:
 | 
						|
    - goimports
 | 
						|
    - golint
 | 
						|
    - govet
 | 
						|
    - misspell
 | 
						|
    - errcheck
 | 
						|
    - staticcheck
 | 
						|
    - prealloc
 | 
						|
    - ineffassign
 |