Sha256: 743fcb4b5084f88077ae4bcf003ca5e1ff16fd995869962c30f399611510c130

Contents?: true

Size: 875 Bytes

Versions: 1

Compression:

Stored size: 875 Bytes

Contents

inherit_from: .rubocop_todo.yml

AllCops:
  Exclude:
    - vendor/**/*
    - example/**/*
  TargetRubyVersion: 2.7

#  Layout stuff
#
Layout/EmptyLinesAroundArguments:
  Enabled: false

Layout/FirstHashElementIndentation:
  EnforcedStyle: consistent

Layout/LineLength:
  Max: 120
  Exclude:
    - spec/**/*

Layout/SpaceAroundMethodCallOperator:
  Enabled: true

# Lint stuff
#
Lint/RaiseException:
  Enabled: true

Lint/StructNewOverride:
  Enabled: true

# Metrics stuff
#
Metrics/BlockLength:
  Exclude:
    - spec/**/*

Metrics/ClassLength:
  Max: 300

Metrics/MethodLength:
  Exclude:
    - spec/**/*

# Naming stuff
#
Naming:
  Enabled: false

# Style stuff
#
Style/ExponentialNotation:
  Enabled: true

Style/HashEachMethods:
  Enabled: true

Style/HashTransformKeys:
  Enabled: true

Style/HashTransformValues:
  Enabled: true

Style/RegexpLiteral:
  Enabled: false

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
grape-swagger-1.1.0 .rubocop.yml