Sha256: c25b3b974fbfd102c087361c5d5dbc4ca0e70abc42185a84e4818887cc87d005

Contents?: true

Size: 695 Bytes

Versions: 1

Compression:

Stored size: 695 Bytes

Contents

AllCops:
  TargetRubyVersion: 2.6.3
  Exclude:
    - "db/*"
    - "db/**/*"
    - "db/fixtures/**/*"
    - "node_modules/**/*"
    - "tmp/**/*"
    - "vendor/**/*"

# To make Lorenzo happy
Layout/AlignHash:
  EnforcedColonStyle: table
  EnforcedHashRocketStyle: table

# Increase line length to 120
Metrics/LineLength:
  Max: 120

# Exclude class and method length for test
Metrics/BlockLength:
  Exclude:
    - "test/**/*"
Metrics/ClassLength:
  Exclude:
    - "test/**/*"
Metrics/MethodLength:
  Exclude:
    - "test/**/*"

# Disable Style/Documentation because...
Style/Documentation:
  Enabled: false

# Use double quotes ALL THE TIME!!!
Style/StringLiterals:
  EnforcedStyle: double_quotes

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
boxt_ruby_style_guide-3.0.0 default.yml