Skip to content

Commit

Permalink
Rubocop 1.30 (super-linter#2964)
Browse files Browse the repository at this point in the history
* update rubocop

* adding unrec cops

* fix space
  • Loading branch information
admiralAwkbar committed May 27, 2022
1 parent bb6a68e commit 53ff7db
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dependencies/Gemfile
Expand Up @@ -4,7 +4,7 @@ source "https://rubygems.org"

git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }

gem "rubocop", "~> 1.29.1"
gem "rubocop", "~> 1.30.0"
gem "rubocop-github", "~> 0.17.0"
gem "rubocop-performance", "~>1.13.3"
gem "rubocop-rails", "~> 2.14"
Expand Down
14 changes: 7 additions & 7 deletions dependencies/Gemfile.lock
@@ -1,30 +1,30 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (7.0.2.3)
activesupport (7.0.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
ast (2.4.2)
concurrent-ruby (1.1.9)
concurrent-ruby (1.1.10)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
minitest (5.15.0)
parallel (1.22.1)
parser (3.1.2.0)
ast (~> 2.4.1)
rack (2.2.3)
rack (2.2.3.1)
rainbow (3.1.1)
regexp_parser (2.4.0)
rexml (3.2.5)
rubocop (1.29.1)
rubocop (1.30.0)
parallel (~> 1.10)
parser (>= 3.1.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.17.0, < 2.0)
rubocop-ast (>= 1.18.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.18.0)
Expand All @@ -51,11 +51,11 @@ PLATFORMS
ruby

DEPENDENCIES
rubocop (~> 1.29.1)
rubocop (~> 1.30.0)
rubocop-github (~> 0.17.0)
rubocop-performance (~> 1.13.3)
rubocop-rails (~> 2.14)
rubocop-rspec (~> 2.11.1)

BUNDLED WITH
2.3.7
2.3.5
2 changes: 1 addition & 1 deletion lib/linter.sh
Expand Up @@ -952,7 +952,7 @@ LINTER_COMMANDS_ARRAY['PYTHON_ISORT']="isort --check --diff --sp ${PYTHON_ISORT_
LINTER_COMMANDS_ARRAY['PYTHON_MYPY']="mypy --config-file ${PYTHON_MYPY_LINTER_RULES} --install-types --non-interactive"
LINTER_COMMANDS_ARRAY['R']="lintr"
LINTER_COMMANDS_ARRAY['RAKU']="raku"
LINTER_COMMANDS_ARRAY['RUBY']="rubocop -c ${RUBY_LINTER_RULES} --force-exclusion"
LINTER_COMMANDS_ARRAY['RUBY']="rubocop -c ${RUBY_LINTER_RULES} --force-exclusion --ignore-unrecognized-cops"
LINTER_COMMANDS_ARRAY['RUST_2015']="rustfmt --check --edition 2015"
LINTER_COMMANDS_ARRAY['RUST_2018']="rustfmt --check --edition 2018"
LINTER_COMMANDS_ARRAY['RUST_2021']="rustfmt --check --edition 2021"
Expand Down

0 comments on commit 53ff7db

Please sign in to comment.