Skip to content

Commit

Permalink
Add config support for Hound CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
futhr committed Dec 30, 2014
1 parent 5a2579a commit 1a4819c
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .hound.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
# Too picky.
LineLength:
Enabled: false

# This should truly be on for well documented gems.
Documentation:
Enabled: false

# Neatly aligned code is to swell.
SingleSpaceBeforeFirstArg:
Enabled: false

# Don't mess with RSpec DSL.
Blocks:
Exclude:
- 'spec/**/*'

# It say we should use fail over raise.
SignalException:
Enabled: false
8 changes: 8 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
inherit_from: .hound.yml

AllCops:
Exclude:
- spec/dummy/**/*
- bin/*
- Guardfile
1 change: 1 addition & 0 deletions spree_related_products.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ Gem::Specification.new do |s|
s.add_development_dependency 'sass-rails', '~> 4.0.0'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'pry-rails'
s.add_development_dependency 'rubocop', '>= 0.24.1'
end

0 comments on commit 1a4819c

Please sign in to comment.