Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 14138bd

Browse files
committedDec 2, 2024·
Update rubocop to 1.69.0
- General bundle update. - Update the docs too. - Fix rubocop API deprecations. - Fix reasonable rubocop complaints. - Disable unnecessary rubocop complaints. - Explicit ostruct dependency for future compatibility. - Remove an unnecessary empty file.
1 parent 6ae8a4e commit 14138bd

File tree

147 files changed

+982
-472
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+982
-472
lines changed
 

‎.rubocop.yml

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1-
inherit_from: base_rubocop.yml
2-
31
require: rubocop-rspec
42

3+
inherit_from:
4+
- .rubocop_todo.yml
5+
- base_rubocop.yml
6+
57
Layout/MultilineOperationIndentation:
68
Enabled: false
79

10+
Naming/HeredocDelimiterNaming:
11+
Enabled: false
12+
813
Naming/FileName:
914
Exclude:
1015
- 'bin/codeclimate-rubocop'
@@ -20,3 +25,24 @@ Style/TrailingCommaInHashLiteral:
2025

2126
Style/TrailingCommaInArguments:
2227
Enabled: false
28+
29+
RSpec/AnyInstance:
30+
Enabled: false
31+
32+
RSpec/ContextWording:
33+
Enabled: false
34+
35+
RSpec/DescribedClass:
36+
Enabled: false
37+
38+
RSpec/ExampleLength:
39+
Enabled: false
40+
41+
RSpec/MessageChain:
42+
Enabled: false
43+
44+
RSpec/MultipleExpectations:
45+
Enabled: false
46+
47+
RSpec/NotToNot:
48+
Enabled: false

‎.rubocop_todo.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This configuration was generated by
2+
# `rubocop --auto-gen-config`
3+
# on 2024-11-08 23:41:07 UTC using RuboCop version 1.68.0.
4+
# The point is for the user to remove these configuration records
5+
# one by one as the offenses are removed from the code base.
6+
# Note that changes in the inspected code, or installation of new
7+
# versions of RuboCop, may require this file to be generated again.
8+
9+
# Offense count: 1
10+
# Configuration parameters: AllowComments, AllowNil.
11+
Lint/SuppressedException:
12+
Exclude:
13+
- 'Rakefile'

0 commit comments

Comments
 (0)
Please sign in to comment.