Skip to content

Commit 3ab088a

Browse files
committed
Add .codeclimate.yml config to the project
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
1 parent 8244158 commit 3ab088a

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.codeclimate.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
engines:
3+
bundler-audit:
4+
enabled: true
5+
duplication:
6+
enabled: true
7+
config:
8+
languages:
9+
- ruby
10+
fixme:
11+
enabled: true
12+
rubocop:
13+
enabled: true
14+
exclude_paths:
15+
- spec/
16+
- lib/vendor/
17+
- go/vendor/
18+
- tmp/
19+
- coverage/

.gitlab-ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ codeclimate:
8080
- docker:dind
8181
script:
8282
- docker pull codeclimate/codeclimate
83-
- docker run --env CODECLIMATE_CODE="$PWD" --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate init
8483
- docker run --env CODECLIMATE_CODE="$PWD" --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate analyze -f json > codeclimate.json
8584
artifacts:
8685
paths: [codeclimate.json]

0 commit comments

Comments
 (0)