1
0
Fork 0
mirror of https://github.com/awesome-print/awesome_print synced 2023-03-27 23:22:34 -04:00

Merge pull request #254 from gerrywastaken/enable-rubycop-code-climate-engine

Add `rubycop` and `reek` checking to codeclimate
This commit is contained in:
Gerry 2016-07-05 09:24:23 +10:00 committed by GitHub
commit badb0f78f5
3 changed files with 23 additions and 0 deletions

5
.codeclimate Normal file
View file

@ -0,0 +1,5 @@
engines:
rubocop:
enabled: true
reek:
enabled: true

16
.codeclimate.yml Normal file
View file

@ -0,0 +1,16 @@
---
engines:
duplication:
enabled: true
config:
languages:
- ruby
fixme:
enabled: true
rubocop:
enabled: true
ratings:
paths:
- "**.rb"
exclude_paths:
- spec/

2
.rubocop.yml Normal file
View file

@ -0,0 +1,2 @@
AllCops:
DisabledByDefault: false