mirror of
				https://github.com/aykhans/dodo.git
				synced 2025-11-03 22:19:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			568 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			568 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "2"
 | 
						|
 | 
						|
run:
 | 
						|
    go: "1.25"
 | 
						|
    concurrency: 8
 | 
						|
    timeout: 10m
 | 
						|
 | 
						|
linters:
 | 
						|
    default: none
 | 
						|
    enable:
 | 
						|
        - asasalint
 | 
						|
        - asciicheck
 | 
						|
        - errcheck
 | 
						|
        - gomodguard
 | 
						|
        - goprintffuncname
 | 
						|
        - govet
 | 
						|
        - ineffassign
 | 
						|
        - misspell
 | 
						|
        - nakedret
 | 
						|
        - nolintlint
 | 
						|
        - prealloc
 | 
						|
        - reassign
 | 
						|
        - staticcheck
 | 
						|
        - unconvert
 | 
						|
        - unused
 | 
						|
        - whitespace
 | 
						|
 | 
						|
    settings:
 | 
						|
        staticcheck:
 | 
						|
            checks:
 | 
						|
                - "all"
 | 
						|
                - "-S1002"
 | 
						|
                - "-ST1000"
 |