You've already forked sap-jenkins-library
							
							
				mirror of
				https://github.com/SAP/jenkins-library.git
				synced 2025-10-30 23:57:50 +02:00 
			
		
		
		
	* activate MD022 * fix MD022 findings * activate MD030 * fix MD030 findings * activate MD038 * fix MD038 findings * activate MD031 * fix MD031 findings * activate MD042 * fix MD042 findings * activate MD032 * fix MD032 findings * activate MD039 * activate MD007 * fix MD007 findings * activate MD026 * fix MD026 findings * activate MD001 * fix MD001 findings * acknowledge disabled rules * fix code climate MD032 finding
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "2"
 | |
| checks:
 | |
|   return-statements:
 | |
|     enabled: false
 | |
| plugins:
 | |
|   codenarc:
 | |
|     enabled: true
 | |
|     checks:
 | |
|       BooleanGetBoolean:
 | |
|         enabled: false
 | |
|   editorconfig:
 | |
|     enabled: true
 | |
|     config:
 | |
|       editorconfig: .editorconfig
 | |
|     # https://docs.codeclimate.com/docs/advanced-configuration#section-exclude-patterns
 | |
|     exclude_patterns:
 | |
|     - "documentation/**/images/"
 | |
|     - "cfg/id_rsa.enc"
 | |
|     - "**/testdata/**"
 | |
|   fixme:
 | |
|     enabled: true
 | |
|     config:
 | |
|       strings:
 | |
|       - TODO
 | |
|       - FIXME
 | |
|   gofmt:
 | |
|     enabled: true
 | |
|   golint:
 | |
|     enabled: true
 | |
|   govet:
 | |
|     enabled: true
 | |
|   markdownlint:
 | |
|     enabled: true
 | |
|     checks:
 | |
|       # https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md013---line-length
 | |
|       MD013:
 | |
|         enabled: false
 | |
|       # https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md024
 | |
|       MD024:
 | |
|         enabled: false
 | |
|       # https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md033---inline-html
 | |
|       MD033:
 | |
|         enabled: false
 | |
|       # https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md036
 | |
|       MD036:
 | |
|         enabled: false
 | |
|       # https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md041
 | |
|       MD041:
 | |
|         enabled: false
 | |
|       # TODO: fix in separate PR
 | |
|       # https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md004
 | |
|       MD004:
 | |
|         enabled: false
 | |
|       # https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md040
 | |
|       MD040:
 | |
|         enabled: false
 | |
|       # https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md046
 | |
|       MD046:
 | |
|         enabled: false
 | |
|   shellcheck:
 | |
|     enabled: true
 | |
| exclude_patterns:
 | |
|   - "**/*_generated.go"
 | |
|   - "**/mocks/*.go"
 | |
|   # default excludes are overwritten, add them again
 | |
|   # https://docs.codeclimate.com/docs/excluding-files-and-folders#section-auto-generated-file-and-folder-exclusions
 | |
|   - "**/*_test.go"
 | |
|   - "**/test/"
 |