Skip to content

Commit c3e47ee

Browse files
authored
Add rubocop-performance gem and config to fix deprecation message (#430)
* Add rubocop-performance gem and config to fix deprecation message * ehhh apparently the order of the gemfile matters? Gemfile:14:3: C: Bundler/OrderedGems: Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem rubocop-github should appear before rubocop-performance. gem "rubocop-github" ^^^^^^^^^^^^^^^^^^^^
1 parent d6cbf1a commit c3e47ee

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.rubocop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
inherit_gem:
22
rubocop-github:
33
- config/default.yml
4+
require: rubocop-performance

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ group :test do
1111
gem "rspec"
1212
gem "rubocop", "< 0.68"
1313
gem "rubocop-github"
14+
gem "rubocop-performance"
1415
gem "term-ansicolor"
1516
gem "tins"
1617
end

0 commit comments

Comments
 (0)