Skip to content

Commit f36b71e

Browse files
authored
Merge pull request #398 from puppetlabs/CAT-2453
(CAT-2453) Implement rubocop plugins that have been moved out
2 parents 07aff8e + d935d31 commit f36b71e

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.rubocop.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
inherit_from: .rubocop_todo.yml
22

3-
require:
4-
- rubocop-performance
3+
plugins:
54
- rubocop-rspec
5+
- rubocop-rspec_rails
6+
- rubocop-performance
7+
- rubocop-factory_bot
8+
- rubocop-capybara
69

710
AllCops:
811
Include:

.rubocop_todo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2025-09-30 12:45:13 UTC using RuboCop version 1.73.2.
3+
# on 2025-09-30 14:10:58 UTC using RuboCop version 1.73.2.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new

Gemfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ group :development do
1515
gem 'puppetfile-resolver', '~> 0.6.2', :require => false
1616
gem 'yard', '~> 0.9.28', :require => false
1717
gem "rubocop", '~> 1.73.0', :require => false
18-
gem "rubocop-performance", '~> 1.24.0', :require => false
19-
gem "rubocop-rspec", '~> 3.5.0', :require => false
18+
gem "rubocop-performance", '~> 1.24.0', :require => false
19+
gem "rubocop-rspec", '~> 3.5.0', :require => false
20+
gem 'rubocop-rspec_rails', '~> 2.31.0', :require => false
21+
gem 'rubocop-factory_bot', '~> 2.27.0', :require => false
22+
gem 'rubocop-capybara', '~> 2.22.0', :require => false
2023
gem 'simplecov', :require => false
2124
gem 'simplecov-console', :require => false
2225
gem 'json', "< 2.8.0", :require => false

0 commit comments

Comments
 (0)