Sha256: 600b439d7532e97c5979d1ea9c3e64fd02d82c962f88dd185a8a0dcb7c7f2df6

Contents?: true

Size: 769 Bytes

Versions: 3

Compression:

Stored size: 769 Bytes

Contents

inherit_from: .rubocop_exclusions.yml

# General configuration
AllCops:
  DisabledByDefault: true
  Include:
    - 'lib/**/*.rb'
    - 'spec/**/*.rb'
  NewCops: enable
  SuggestExtensions: false
  TargetRubyVersion: 3.0.6

# Explicit configuration
Bundler:
  Enabled: true

Lint:
  Enabled: true

Layout:
  Enabled: true

Layout/BlockAlignment:
  EnforcedStyleAlignWith: start_of_block

Layout/HashAlignment:
  AllowMultipleStyles: true
  EnforcedHashRocketStyle: table
  EnforcedColonStyle: table

Layout/MultilineMethodCallIndentation:
  Enabled: true
  EnforcedStyle: indented_relative_to_receiver

Security:
  Enabled: true

Style/CollectionMethods:
  Enabled: true
  PreferredMethods:
    inject: "inject"
    collect: "map"

Style/Documentation:
  Enabled: false

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
invofox-api-ruby-0.1.2 .rubocop.yml
invofox-api-ruby-0.1.1 .rubocop.yml
invofox-api-ruby-0.1.0 .rubocop.yml