Skip to content
This repository has been archived by the owner on Oct 19, 2023. It is now read-only.

Commit

Permalink
👮 Update rubocop todo for patched rubocop version
Browse files Browse the repository at this point in the history
  • Loading branch information
erran committed Nov 20, 2017
1 parent a20edcb commit 19bffee
Showing 1 changed file with 137 additions and 8 deletions.
145 changes: 137 additions & 8 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,47 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2017-11-20 12:24:27 +0000 using RuboCop version 0.40.0.
# on 2017-11-20 16:26:30 +0000 using RuboCop version 0.49.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: Include, TreatCommentsAsGroupSeparators.
# Include: **/Gemfile, **/gems.rb
Bundler/OrderedGems:
Exclude:
- 'Gemfile'

# Offense count: 1
# Cop supports --auto-correct.
Layout/EmptyLineAfterMagicComment:
Exclude:
- 'convection.gemspec'

# Offense count: 1
# Cop supports --auto-correct.
Layout/EmptyLinesAroundExceptionHandlingKeywords:
Exclude:
- 'lib/convection/control/stack.rb'

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
# SupportedStyles: consistent, special_for_inner_method_call, special_for_inner_method_call_in_parentheses
Layout/FirstParameterIndentation:
Exclude:
- 'lib/convection/model/mixin/taggable.rb'

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: auto_detection, squiggly, active_support, powerpack, unindent
Layout/IndentHeredoc:
Exclude:
- 'yard_extensions/properties_handler.rb'

# Offense count: 1
Lint/HandleExceptions:
Exclude:
Expand All @@ -20,6 +56,11 @@ Lint/UselessAssignment:
Metrics/AbcSize:
Max: 63

# Offense count: 34
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/BlockLength:
Max: 136

# Offense count: 5
# Configuration parameters: CountComments.
Metrics/ClassLength:
Expand All @@ -29,11 +70,11 @@ Metrics/ClassLength:
Metrics/CyclomaticComplexity:
Max: 19

# Offense count: 355
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes.
# Offense count: 366
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 165
Max: 236

# Offense count: 36
# Configuration parameters: CountComments.
Expand Down Expand Up @@ -77,8 +118,96 @@ Style/Documentation:

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
# SupportedStyles: consistent, special_for_inner_method_call, special_for_inner_method_call_in_parentheses
Style/FirstParameterIndentation:
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: compact, expanded
Style/EmptyMethod:
Exclude:
- 'lib/convection/model/mixin/taggable.rb'
- 'lib/convection/model/template/resource_collection.rb'

# Offense count: 233
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: when_needed, always, never
Style/FrozenStringLiteralComment:
Enabled: false

# Offense count: 3
# Cop supports --auto-correct.
Style/MultilineIfModifier:
Exclude:
- 'lib/convection/control/stack.rb'
- 'lib/convection/model/template/resource.rb'
- 'spec/convection/model/template/resource_collection_spec.rb'

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: AutoCorrect, EnforcedStyle, SupportedStyles.
# SupportedStyles: predicate, comparison
Style/NumericPredicate:
Exclude:
- 'spec/**/*'
- 'lib/convection/control/stack.rb'

# Offense count: 29
# Cop supports --auto-correct.
# Configuration parameters: PreferredDelimiters.
Style/PercentLiteralDelimiters:
Exclude:
- 'bin/convection'
- 'convection.gemspec'
- 'lib/convection/control/stack.rb'
- 'lib/convection/model/template.rb'
- 'lib/convection/model/template/resource_property/aws_cloudfront_cachebehavior.rb'
- 'lib/convection/model/template/resource_property/aws_cloudfront_defaultcachebehavior.rb'
- 'spec/convection/control/stack_spec.rb'
- 'spec/convection/dsl/intrinsic_functions_spec.rb'
- 'spec/convection/model/cloudfile_spec.rb'
- 'spec/convection/model/template/resource/events_rule_spec.rb'
- 'spec/convection/model/template/resource/lambdas_spec.rb'
- 'spec/convection/model/template/resource/permission_spec.rb'
- 'spec/convection/model/template/resource/vpc_endpoints_spec.rb'
- 'spec/ec2_client_context.rb'

# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, AllowInnerSlashes.
# SupportedStyles: slashes, percent_r, mixed
Style/RegexpLiteral:
Exclude:
- 'convection.gemspec'

# Offense count: 17
# Cop supports --auto-correct.
# Configuration parameters: ConvertCodeThatCanStartToReturnNil.
Style/SafeNavigation:
Exclude:
- 'lib/convection/control/cloud.rb'
- 'lib/convection/control/stack.rb'

# Offense count: 6
# Cop supports --auto-correct.
# Configuration parameters: MinSize, SupportedStyles.
# SupportedStyles: percent, brackets
Style/SymbolArray:
EnforcedStyle: brackets

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, AllowSafeAssignment.
# SupportedStyles: require_parentheses, require_no_parentheses, require_parentheses_when_complex
Style/TernaryParentheses:
Exclude:
- 'lib/convection/dsl/helpers.rb'

# Offense count: 2
# Cop supports --auto-correct.
Style/UnneededPercentQ:
Exclude:
- 'convection.gemspec'

# Offense count: 4
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: snake_case, normalcase, non_integer
Style/VariableNumber:
Exclude:
- 'lib/convection/dsl/intrinsic_functions.rb'

0 comments on commit 19bffee

Please sign in to comment.