forked from SAP/jenkins-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.codeclimate.yml
45 lines (45 loc) · 1.02 KB
/
.codeclimate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
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/"