Skip to content

Commit 1bd8f6c

Browse files
committed
Updated Rubocop Namespaces
It was causing some warnings.
1 parent b662038 commit 1bd8f6c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.rubocop.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Metrics/BlockLength:
1111
Enabled: false
1212

1313
# certificate_1 is an okay variable name
14-
Style/VariableNumber:
14+
Naming/VariableNumber:
1515
Enabled: false
1616

1717
# This is used a lot across the fastlane code base for config files
@@ -59,7 +59,7 @@ Lint/UselessAssignment:
5959
# Enabled: false
6060

6161
# HoundCI doesn't like this rule
62-
Style/DotPosition:
62+
Layout/DotPosition:
6363
Enabled: false
6464

6565
# We allow !! as it's an easy way to convert ot boolean
@@ -121,7 +121,7 @@ Metrics/ClassLength:
121121

122122

123123
# Configuration parameters: AllowURI, URISchemes.
124-
Metrics/LineLength:
124+
Layout/LineLength:
125125
Max: 370
126126

127127
# Configuration parameters: CountKeywordArgs.
@@ -161,15 +161,15 @@ Lint/ParenthesesAsGroupedExpression:
161161

162162
# This would reject is_ in front of methods
163163
# We use `is_supported?` everywhere already
164-
Style/PredicateName:
164+
Naming/PredicateName:
165165
Enabled: false
166166

167167
# We allow the $
168168
Style/PerlBackrefs:
169169
Enabled: false
170170

171171
# Disable '+ should be surrounded with a single space' for xcodebuild_spec.rb
172-
Style/SpaceAroundOperators:
172+
Layout/SpaceAroundOperators:
173173
Exclude:
174174
- '**/spec/actions_specs/xcodebuild_spec.rb'
175175

0 commit comments

Comments
 (0)