Skip to content

Commit

Permalink
Dump full RuboCop config
Browse files Browse the repository at this point in the history
This automated commit dumps the contents of the full RuboCop config.
[dependabot skip]
  • Loading branch information
github-actions[bot] committed Apr 8, 2024
1 parent 55c1af8 commit ac2a83e
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions test/fixtures/full_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ AllCops:
- rails
rubocop-rspec:
- rspec
- rspec-rails
rubocop-minitest:
- minitest
rubocop-sequel:
Expand All @@ -100,6 +99,8 @@ AllCops:
rubocop-factory_bot:
- factory_bot
- factory_bot_rails
rubocop-rspec_rails:
- rspec-rails
ActiveSupportExtensionsEnabled: false
Bundler/DuplicatedGem:
Description: Checks for duplicate gem entries in Gemfile.
Expand Down Expand Up @@ -1166,7 +1167,7 @@ Lint/Debugger:
Description: Check for debugger calls.
Enabled: true
VersionAdded: '0.14'
VersionChanged: '1.46'
VersionChanged: '1.63'
DebuggerMethods:
Kernel:
- binding.irb
Expand All @@ -1177,8 +1178,14 @@ Lint/Debugger:
- Kernel.byebug
- Kernel.remote_byebug
Capybara:
- page.save_and_open_page
- page.save_and_open_screenshot
- page.save_page
- page.save_screenshot
- save_and_open_page
- save_and_open_screenshot
- save_page
- save_screenshot
debug.rb:
- binding.b
- binding.break
Expand All @@ -1200,6 +1207,11 @@ Lint/Debugger:
- jard
WebConsole:
- binding.console
DebuggerRequires:
debug.rb:
- debug/open
- debug/open_nonstop
- debug/start
Lint/DeprecatedClassMethods:
Description: Check for deprecated class method calls.
Enabled: true
Expand Down Expand Up @@ -2071,7 +2083,8 @@ Naming/FileName:
Enabled: true
VersionAdded: '0.50'
VersionChanged: '1.23'
Exclude: []
Exclude:
- "/Rakefile.rb"
ExpectMatchingDefinition: false
CheckDefinitionPathHierarchy: true
CheckDefinitionPathHierarchyRoots:
Expand Down Expand Up @@ -3212,6 +3225,13 @@ Style/MapCompactWithConditionalBlock:
Description: Prefer `select` or `reject` over `map { ... }.compact`.
Enabled: false
VersionAdded: '1.30'
Style/MapIntoArray:
Description: Checks for usages of `each` with `<<`, `push`, or `append` which can
be replaced by `map`.
StyleGuide: "#functional-code"
Enabled: pending
VersionAdded: '1.63'
Safe: false
Style/MapToHash:
Description: Prefer `to_h` with a block over `map.to_h`.
Enabled: false
Expand Down

0 comments on commit ac2a83e

Please sign in to comment.