Skip to content

Commit

Permalink
Make sure the gem works with new version of Rubocop
Browse files Browse the repository at this point in the history
New rubocop change the auto_correct option to be autocorrect.
  • Loading branch information
rafaelfranca committed Jun 15, 2022
1 parent 9d304e7 commit 032d886
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 40 deletions.
78 changes: 38 additions & 40 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,17 @@ PATH
GEM
remote: https://rubygems.org/
specs:
actionview (6.1.5.1)
activesupport (= 6.1.5.1)
actionview (7.0.3)
activesupport (= 7.0.3)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
activesupport (6.1.5.1)
activesupport (7.0.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
ast (2.4.2)
better_html (1.0.16)
actionview (>= 4.0)
Expand All @@ -37,65 +36,64 @@ GEM
builder (3.2.4)
concurrent-ruby (1.1.10)
crass (1.0.6)
diff-lcs (1.4.4)
diff-lcs (1.5.0)
erubi (1.10.0)
fakefs (1.3.2)
fakefs (1.5.1)
html_tokenizer (0.0.7)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
loofah (2.16.0)
loofah (2.18.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mini_portile2 (2.6.1)
minitest (5.15.0)
nokogiri (1.12.5)
mini_portile2 (~> 2.6.1)
mini_portile2 (2.8.0)
minitest (5.16.0)
nokogiri (1.13.6)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
parallel (1.20.1)
parser (3.0.2.0)
parallel (1.22.1)
parser (3.1.2.0)
ast (~> 2.4.1)
racc (1.6.0)
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
nokogiri (>= 1.6)
rails-html-sanitizer (1.4.2)
rails-html-sanitizer (1.4.3)
loofah (~> 2.3)
rainbow (3.0.0)
rake (13.0.3)
regexp_parser (2.1.1)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.5.0)
rexml (3.2.5)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
rspec-mocks (~> 3.10.0)
rspec-core (3.10.1)
rspec-support (~> 3.10.0)
rspec-expectations (3.10.1)
rspec (3.11.0)
rspec-core (~> 3.11.0)
rspec-expectations (~> 3.11.0)
rspec-mocks (~> 3.11.0)
rspec-core (3.11.0)
rspec-support (~> 3.11.0)
rspec-expectations (3.11.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-mocks (3.10.2)
rspec-support (~> 3.11.0)
rspec-mocks (3.11.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-support (3.10.2)
rubocop (1.18.4)
rspec-support (~> 3.11.0)
rspec-support (3.11.0)
rubocop (1.30.1)
parallel (~> 1.10)
parser (>= 3.0.0.0)
parser (>= 3.1.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml
rubocop-ast (>= 1.8.0, < 2.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.18.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.8.0)
parser (>= 3.0.1.1)
rubocop-shopify (2.2.0)
rubocop (~> 1.18)
rubocop-ast (1.18.0)
parser (>= 3.1.1.0)
rubocop-shopify (2.7.0)
rubocop (~> 1.30)
ruby-progressbar (1.11.0)
smart_properties (1.15.0)
smart_properties (1.17.0)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
unicode-display_width (2.0.0)
zeitwerk (2.5.4)
unicode-display_width (2.1.0)

PLATFORMS
ruby
Expand All @@ -109,4 +107,4 @@ DEPENDENCIES
rubocop-shopify

BUNDLED WITH
2.2.5
2.3.16
1 change: 1 addition & 0 deletions lib/erb_lint/linters/rubocop.rb
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ def build_team
@rubocop_config,
extra_details: true,
display_cop_names: true,
autocorrect: true,
auto_correct: true,
stdin: "",
)
Expand Down

0 comments on commit 032d886

Please sign in to comment.