Skip to content
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

chore(deps): rubocop-jekyll 0.3 #80

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 2 additions & 26 deletions .rubocop.yml
@@ -1,30 +1,6 @@
inherit_from: .rubocop_todo.yml

require: rubocop-jekyll

inherit_gem:
rubocop-jekyll: .rubocop.yml

Lint/AmbiguousOperator:
Exclude:
- lib/jekyll/commands/draft.rb
- lib/jekyll/commands/page.rb
- lib/jekyll/commands/post.rb

Metrics/LineLength:
Exclude:
- jekyll-compose.gemspec
- lib/jekyll-compose/file_creator.rb
- lib/jekyll-compose/file_mover.rb
- lib/jekyll/commands/draft.rb
- lib/jekyll/commands/page.rb
- lib/jekyll/commands/post.rb
- lib/jekyll/commands/publish.rb
- lib/jekyll/commands/unpublish.rb
- spec/**/*

Metrics/BlockLength:
Exclude:
- spec/**/*

Style/GlobalVars:
Exclude:
- spec/spec_helper.rb
24 changes: 24 additions & 0 deletions .rubocop_todo.yml
@@ -0,0 +1,24 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2018-10-26 17:05:15 +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: 3
Lint/AmbiguousOperator:
Exclude:
- 'lib/jekyll/commands/draft.rb'
- 'lib/jekyll/commands/page.rb'
- 'lib/jekyll/commands/post.rb'

# Offense count: 5
# Configuration parameters: Max, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Exclude:
- 'lib/jekyll-compose/file_creator.rb'
- 'lib/jekyll-compose/file_mover.rb'
- 'lib/jekyll/commands/publish.rb'
- 'lib/jekyll/commands/unpublish.rb'
2 changes: 1 addition & 1 deletion jekyll-compose.gemspec
Expand Up @@ -25,5 +25,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rubocop-jekyll", "~> 0.2"
spec.add_development_dependency "rubocop-jekyll", "~> 0.3"
end