1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/.codeclimate.yml

69 lines
1.9 KiB
YAML
Raw Normal View History

version: "2"
checks:
return-statements:
enabled: false
2018-10-25 10:39:08 +02:00
plugins:
codenarc:
enabled: true
checks:
BooleanGetBoolean:
enabled: false
2018-10-25 10:39:08 +02:00
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/**"
2018-10-25 10:39:08 +02:00
fixme:
enabled: true
config:
strings:
- TODO
- FIXME
gofmt:
enabled: true
golint:
enabled: true
govet:
enabled: true
2018-10-25 10:39:08 +02:00
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
2018-10-25 10:39:08 +02:00
shellcheck:
enabled: true
2020-02-25 14:42:47 +02:00
exclude_patterns:
- "**/*_generated.go"
- "**/mocks/*.go"
2020-02-25 14:42:47 +02:00
# 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/"