Sha256: 1db187e0f7bef2d8e30963c056f68318d53222b8a87cc86dfc3f330175104ad8

Contents?: true

Size: 1.77 KB

Versions: 2

Compression:

Stored size: 1.77 KB

Contents

AllCops:
  NewCops: enable
  Exclude:
    - 'local/**/*'
    - 'vendor/**/*'
    - 'tmp/**/*'
    - 'inquery.gemspec'
  SuggestExtensions: false

  DisplayCopNames: true

Style/SignalException:
  EnforcedStyle: only_fail

Metrics/MethodLength:
  Enabled: false

Metrics/ClassLength:
  Enabled: false

Metrics/ModuleLength:
  Enabled: false

Metrics/BlockLength:
  Enabled: false

Metrics/ParameterLists:
  Max: 5
  CountKeywordArgs: false

Metrics/AbcSize:
  Enabled: False

Metrics/CyclomaticComplexity:
  Enabled: False

Metrics/PerceivedComplexity:
  Enabled: False

Layout/LineLength:
  Max: 160

Metrics/BlockNesting:
  Enabled: false

Style/IfUnlessModifier:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/RedundantReturn:
  Enabled: false

Style/AsciiComments:
  Enabled: false

Style/GuardClause:
  Enabled: false

Style/ClassAndModuleChildren:
  Enabled: false
  EnforcedStyle: compact
  SupportedStyles:
    - nested
    - compact
  # Checks the style of children definitions at classes and modules.
  #
  # Basically there are two different styles:
  #
  # `nested` - have each child on a separate line
  #   class Foo
  #     class Bar
  #     end
  #   end
  #
  # `compact` - combine definitions as much as possible
  #   class Foo::Bar
  #   end
  #
  # The compact style is only forced, for classes / modules with one child.

Style/FormatString:
  Enabled: false

# Multiline hashes should be aligned cleanly as a table to improve readability.
Layout/HashAlignment:
  EnforcedHashRocketStyle: table
  EnforcedColonStyle: table

Style/FrozenStringLiteralComment:
  Enabled: false

Style/AccessorGrouping:
  Enabled: false

Style/DoubleNegation:
  Enabled: false

Style/ConditionalAssignment:
  Enabled: false

Style/CaseLikeIf:
  Enabled: false

Style/OpenStructUse:
  Enabled: false

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
inquery-1.0.11 .rubocop.yml
inquery-1.0.10 .rubocop.yml