Sha256: dc1a7e87abc354c1c31035b12e4be2a85e287f9aee92c4f04230e70db56075f4

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

AllCops:
  TargetRubyVersion: 2.3.3

inherit_from: .rubocop_todo.yml

#######
# WIP These should all go back to defaults at some point
Metrics/AbcSize:
  Max: 22
Metrics/MethodLength:
  Max: 20
Metrics/ClassLength:
  Max: 190

#######
# Finalized settings

Layout/LineLength:
  Max: 120
  Exclude:
    - 'spec/lib/jenkins_pipeline_builder/compiler_spec.rb'
    - 'spec/lib/jenkins_pipeline_builder/view_spec.rb'
    - 'spec/lib/jenkins_pipeline_builder/pull_request_generator_spec.rb'
    - 'lib/jenkins_pipeline_builder/extensions/**/*'

Style/Documentation:
  Enabled: false

# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/Next:
  Exclude:
    - 'lib/jenkins_pipeline_builder/extensions/**/*'

# Configuration parameters: EnforcedStyle, SupportedStyles.
Naming/VariableName:
  Exclude:
    - 'lib/jenkins_pipeline_builder/extensions/**/*'

Style/SymbolProc:
  IgnoredMethods: new

Style/FrozenStringLiteralComment:
  Enabled: false

Style/SafeNavigation:
  Enabled: false

Lint/RaiseException:
  Enabled: true

Lint/StructNewOverride:
  Enabled: true

Style/HashEachMethods:
  Enabled: true

Style/HashTransformKeys:
  Enabled: true

Style/HashTransformValues:
  Enabled: true

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jenkins_pipeline_builder-1.10.0 .rubocop.yml
jenkins_pipeline_builder-1.9.1 .rubocop.yml