Skip to content

Commit

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

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

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

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

# We really like the readability with newline in beginning of classes.
EmptyLinesAroundBlockBody:
Enabled: false

# Use nested module/class definitions instead of compact style.
# Too high git impact to change this now.
ClassAndModuleChildren:
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_social.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 'coffee-rails', '~> 4.0.0'
s.add_development_dependency 'sass-rails', '~> 4.0.0'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'rubocop', '>= 0.24.1'
end

0 comments on commit c94d9a3

Please sign in to comment.