Merge pull request #5768 from DirtyF/rubocop-47
Merge pull request 5768
This commit is contained in:
commit
750fb32ca3
|
@ -48,6 +48,14 @@ Metrics/ParameterLists:
|
||||||
Max: 4
|
Max: 4
|
||||||
Metrics/PerceivedComplexity:
|
Metrics/PerceivedComplexity:
|
||||||
Max: 8
|
Max: 8
|
||||||
|
Security/MarshalLoad:
|
||||||
|
Exclude:
|
||||||
|
- !ruby/regexp /test\/.*.rb$/
|
||||||
|
- lib/jekyll/regenerator.rb
|
||||||
|
Security/YAMLLoad:
|
||||||
|
Exclude:
|
||||||
|
- !ruby/regexp /features\/.*.rb/
|
||||||
|
- !ruby/regexp /test\/.*.rb$/
|
||||||
Style/Alias:
|
Style/Alias:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
Style/AlignArray:
|
Style/AlignArray:
|
||||||
|
|
2
Gemfile
2
Gemfile
|
@ -25,7 +25,7 @@ group :test do
|
||||||
gem "nokogiri"
|
gem "nokogiri"
|
||||||
gem "rspec"
|
gem "rspec"
|
||||||
gem "rspec-mocks"
|
gem "rspec-mocks"
|
||||||
gem "rubocop", "~> 0.46"
|
gem "rubocop", "~> 0.47"
|
||||||
gem "test-theme", :path => File.expand_path("./test/fixtures/test-theme", File.dirname(__FILE__))
|
gem "test-theme", :path => File.expand_path("./test/fixtures/test-theme", File.dirname(__FILE__))
|
||||||
|
|
||||||
gem "jruby-openssl" if RUBY_ENGINE == "jruby"
|
gem "jruby-openssl" if RUBY_ENGINE == "jruby"
|
||||||
|
|
Loading…
Reference in New Issue