Skip to content

Commit cc6f3b5

Browse files
authored
chore(deps): rubocop-jekyll 0.3 (#64)
Merge pull request 64
1 parent 1ca4a4d commit cc6f3b5

File tree

3 files changed

+34
-21
lines changed

3 files changed

+34
-21
lines changed

.rubocop.yml

+2-20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
inherit_from: .rubocop_todo.yml
2+
13
require: rubocop-jekyll
24
inherit_gem:
35
rubocop-jekyll: .rubocop.yml
@@ -7,23 +9,3 @@ AllCops:
79
Exclude:
810
- vendor/**/*
911
- spec/*.rb
10-
11-
Lint/IneffectiveAccessModifier:
12-
Exclude:
13-
- lib/jekyll-gist/gist_tag.rb
14-
15-
Lint/ShadowedException:
16-
Exclude:
17-
- lib/jekyll-gist/gist_tag.rb
18-
19-
Metrics/AbcSize:
20-
Exclude:
21-
- lib/jekyll-gist/gist_tag.rb
22-
23-
Metrics/MethodLength:
24-
Exclude:
25-
- lib/jekyll-gist/gist_tag.rb
26-
27-
Style/PreferredHashMethods:
28-
Exclude:
29-
- lib/jekyll-gist/gist_tag.rb

.rubocop_todo.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This configuration was generated by
2+
# `rubocop --auto-gen-config`
3+
# on 2018-10-26 17:08:37 +0200 using RuboCop version 0.60.0.
4+
# The point is for the user to remove these configuration records
5+
# one by one as the offenses are removed from the code base.
6+
# Note that changes in the inspected code, or installation of new
7+
# versions of RuboCop, may require this file to be generated again.
8+
9+
# Offense count: 1
10+
Lint/IneffectiveAccessModifier:
11+
Exclude:
12+
- 'lib/jekyll-gist/gist_tag.rb'
13+
14+
# Offense count: 1
15+
Lint/ShadowedException:
16+
Exclude:
17+
- 'lib/jekyll-gist/gist_tag.rb'
18+
19+
# Offense count: 1
20+
# Configuration parameters: Max.
21+
Metrics/AbcSize:
22+
Exclude:
23+
- 'lib/jekyll-gist/gist_tag.rb'
24+
25+
# Offense count: 1
26+
# Cop supports --auto-correct.
27+
# Configuration parameters: EnforcedStyle.
28+
# SupportedStyles: short, verbose
29+
Style/PreferredHashMethods:
30+
Exclude:
31+
- 'lib/jekyll-gist/gist_tag.rb'

jekyll-gist.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ Gem::Specification.new do |spec|
2626
spec.add_development_dependency "jekyll", ">= 3.0"
2727
spec.add_development_dependency "rake"
2828
spec.add_development_dependency "rspec"
29-
spec.add_development_dependency "rubocop-jekyll", "~> 0.2"
29+
spec.add_development_dependency "rubocop-jekyll", "~> 0.3"
3030
spec.add_development_dependency "webmock"
3131
end

0 commit comments

Comments
 (0)