1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-11-24 08:32:32 +02:00
sap-jenkins-library/.codeclimate.yml
Christopher Fenner 20fd6e82ff
fix: markdownlint findings for MD012 (#2383)
* activate MD012

* activate MD012

* fix MD012 findings

* fix MD012
2020-11-16 18:22:38 +01:00

98 lines
3.0 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/main/doc/Rules.md#md033---inline-html
MD033:
enabled: false
# TODO: fix in separate PR
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md001
MD001:
enabled: false
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md004
MD004:
enabled: false
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md007
MD007:
enabled: false
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md022
MD022:
enabled: false
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md024
MD024:
enabled: false
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md026
MD026:
enabled: false
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md030
MD030:
enabled: false
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md031
MD031:
enabled: false
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md032
MD032:
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#md038
MD038:
enabled: false
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md039
MD039:
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#md042
MD042:
enabled: false
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md041
MD041:
enabled: false
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md046
MD046:
enabled: false
shellcheck:
enabled: true
exclude_patterns:
- "**/*_generated.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/"