-
Notifications
You must be signed in to change notification settings - Fork 0
/
.codeclimate.yml
38 lines (34 loc) · 920 Bytes
/
.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
# .codeclimate.yml
version: "2"
# prepare: Actions to perform before analysis begins
# fetch: Remote files to fetch (files are placed relative to the repo's root directory)
# url: url to fetch
# path: destination relative to repo's root directory
# checks: Configuration of maintainability checks
# <name>
# enabled: true|false
# config: check configuration
# plugins: Enable optional engines to run in addition to your analysis
# <name>
# enabled: true|false
# channel: alternate channel to use (stable is default)
# config: plugin configuration
plugins:
markdownlint:
enabled: true
shellcheck:
enabled: true
gofmt:
enabled: true
golint:
enabled: true
config:
min_confidence: 0.9
govet:
enabled: true
# exclude_patterns: Exclude files and/or directories from analysis
# - <pattern>
# - <pattern>
exclude_patterns:
- "docs/"
- "**/*_test.go"