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:
commit
badb0f78f5
3 changed files with 23 additions and 0 deletions
5
.codeclimate
Normal file
5
.codeclimate
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
engines:
|
||||||
|
rubocop:
|
||||||
|
enabled: true
|
||||||
|
reek:
|
||||||
|
enabled: true
|
16
.codeclimate.yml
Normal file
16
.codeclimate.yml
Normal 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
2
.rubocop.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
AllCops:
|
||||||
|
DisabledByDefault: false
|
Loading…
Reference in a new issue