Sha256: 75d7170032569e1496d03404d2fbf814a05421bef50f00ddca5b69a2c5215515

Contents?: true

Size: 979 Bytes

Versions: 2

Compression:

Stored size: 979 Bytes

Contents

AllCops:
  Include:
    - '**/Rakefile'
  Exclude:
    - 'bin/*'
    - 'Gemfile'

# Accept single-line methods with no body
SingleLineMethods:
  AllowIfMethodIsEmpty: true

# Top-level documentation of classes and modules are needless
Documentation:
  Enabled: false

# Allow to chain of block after another block that spans multiple lines
MultilineBlockChain:
  Enabled: false

# Allow `->` literal for multi line blocks
Lambda:
  Enabled: false

# Both nested and compact are okay
ClassAndModuleChildren:
  Enabled: false

# Specifying param names is unnecessary
Style/SingleLineBlockParams:
  Enabled: false

# Allow using `{...}` for anytime
Style/BlockDelimiters:
  Enabled: false

# Prefer Kernel#sprintf
FormatString:
  EnforcedStyle: sprintf

# Maximum method length
MethodLength:
  Max: 20

# Tuned to MethodLength
Metrics/AbcSize:
  Max: 30

# Prefer double_quotes strings unless your string literal contains escape chars
StringLiterals:
  EnforcedStyle: double_quotes

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
holidays_from_google_calendar-0.4.7 .rubocop.yml
holidays_from_google_calendar-0.4.6 .rubocop.yml