Skip to content

chore(deps): rubocop-jekyll 0.3 #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 2 additions & 20 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
inherit_from: .rubocop_todo.yml

require: rubocop-jekyll
inherit_gem:
rubocop-jekyll: .rubocop.yml
Expand All @@ -7,23 +9,3 @@ AllCops:
Exclude:
- vendor/**/*
- spec/*.rb

Lint/IneffectiveAccessModifier:
Exclude:
- lib/jekyll-gist/gist_tag.rb

Lint/ShadowedException:
Exclude:
- lib/jekyll-gist/gist_tag.rb

Metrics/AbcSize:
Exclude:
- lib/jekyll-gist/gist_tag.rb

Metrics/MethodLength:
Exclude:
- lib/jekyll-gist/gist_tag.rb

Style/PreferredHashMethods:
Exclude:
- lib/jekyll-gist/gist_tag.rb
31 changes: 31 additions & 0 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2018-10-26 17:08:37 +0200 using RuboCop version 0.60.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 1
Lint/IneffectiveAccessModifier:
Exclude:
- 'lib/jekyll-gist/gist_tag.rb'

# Offense count: 1
Lint/ShadowedException:
Exclude:
- 'lib/jekyll-gist/gist_tag.rb'

# Offense count: 1
# Configuration parameters: Max.
Metrics/AbcSize:
Exclude:
- 'lib/jekyll-gist/gist_tag.rb'

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle.
# SupportedStyles: short, verbose
Style/PreferredHashMethods:
Exclude:
- 'lib/jekyll-gist/gist_tag.rb'
2 changes: 1 addition & 1 deletion jekyll-gist.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "jekyll", ">= 3.0"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "rubocop-jekyll", "~> 0.2"
spec.add_development_dependency "rubocop-jekyll", "~> 0.3"
spec.add_development_dependency "webmock"
end