Sha256: 9191cc066084a16f28185a31198729ed7982d124dcc075cfceb70a0aca774ca2

Contents?: true

Size: 1.07 KB

Versions: 5

Compression:

Stored size: 1.07 KB

Contents

# See https://github.com/rubocop-hq/rubocop/blob/master/manual/configuration.md
# See https://docs.rubocop.org/en/stable/

AllCops:
  NewCops: enable

Layout/HashAlignment:
  EnforcedHashRocketStyle: table
  EnforcedColonStyle: table

Layout/LineLength:
  Max: 80
  IgnoredPatterns:
    - '\A\s*# {3}' # Examples in YARD

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented

Lint/AmbiguousBlockAssociation:
  Enabled: false

Lint/AmbiguousOperator:
  Enabled: false

Lint/AmbiguousRegexpLiteral:
  Enabled: false

Metrics/BlockLength:
  Exclude:
    - spec/**/*_spec.rb

Metrics/ModuleLength:
  Exclude:
    - spec/**/*_spec.rb

Naming/MethodParameterName:
  AllowedNames: ['as', 'id']

Style/AndOr:
  EnforcedStyle: conditionals

Style/Documentation:
  Exclude:
    - spec/**/*_spec.rb
    - lib/jimmy/schema/**/*.rb
    - lib/jimmy/declaration/**/*.rb

Style/DocumentationMethod:
  Enabled: true

Style/FormatString:
  EnforcedStyle: percent

Style/FormatStringToken:
  EnforcedStyle: unannotated

Style/NestedParenthesizedCalls:
  Enabled: false

Style/PerlBackrefs:
  Enabled: false

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jimmy-2.1.0 .rubocop.yml
jimmy-2.0.3 .rubocop.yml
jimmy-2.0.2 .rubocop.yml
jimmy-2.0.1 .rubocop.yml
jimmy-2.0.0 .rubocop.yml