16 lines
		
	
	
		
			630 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			630 B
		
	
	
	
		
			Plaintext
		
	
	
	
# https://github.com/codespell-project/codespell#using-a-config-file
 | 
						|
[codespell]
 | 
						|
 | 
						|
# Comma-separated list of files to skip.
 | 
						|
skip = ./vendor,./.git #,bin,vendor,.git,go.sum,changelog.txt,.cirrus.yml,"RELEASE_NOTES.md,*.xz,*.gz,*.tar,*.tgz,bin2img,*ico,*.png,*.1,*.5,copyimg,*.orig,apidoc.go"
 | 
						|
 | 
						|
# Comma separated list of words to be ignored. Words must be lowercased.
 | 
						|
ignore-words-list = clos,creat,ro,hastable,shouldnot
 | 
						|
 | 
						|
# Custom dictionary file that contains spelling corrections.
 | 
						|
# Run with option '--dictionary=-' to include also default dictionary.
 | 
						|
dictionary = .codespelldict
 | 
						|
 | 
						|
# Check file names as well.
 | 
						|
check-filenames = true
 |