File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ # default rule used by hound
2+ # @see https://github.com/houndci/hound/blob/master/.rubocop.yml
3+ require : rubocop-rspec
4+
5+ AllCops :
6+ Exclude :
7+ - spec/spec_helper.rb
8+ - vendor/**/*
9+ - fcm.gemspec
10+ - Gemfile
11+ - Rakefile
12+ - lib/fcm.rb
13+
14+ Metrics/LineLength :
15+ Description : ' Limit lines to 85 characters.'
16+ StyleGuide : ' #80-character-limits'
17+ Max : 85
18+ Enabled : true
19+
20+ Metrics/MethodLength :
21+ Description : ' Avoid methods longer than 25 lines of code.'
22+ StyleGuide : ' #short-methods'
23+ Max : 25
24+ Enabled : true
25+
26+ Metrics/BlockLength :
27+ Exclude :
28+ - spec/fcm_spec.rb
29+
30+ RSpec/MultipleMemoizedHelpers :
31+ Max : 10
32+
33+ RSpec/ExampleLength :
34+ Max : 15
35+
36+ RSpec/MultipleMemoizedHelpers :
37+ Max : 15
You can’t perform that action at this time.
0 commit comments