Sha256: 9aa7678179fa1cd4c9535911e8f56a2a13fc9224014f1e558daba53c399b278d

Contents?: true

Size: 1.96 KB

Versions: 15

Compression:

Stored size: 1.96 KB

Contents

AllCops:
  Exclude:
    - bin/**/*

  TargetRubyVersion: 2.4.1

Rails:
  Enabled: false

Style/CollectionMethods:
  Enabled: true
  PreferredMethods:
    collect: 'map'
    collect!: 'map!'
    inject: 'reduce'

Style/FrozenStringLiteralComment:
  Enabled: false

Layout/AccessModifierIndentation:
  Enabled: false

Style/BlockDelimiters:
  Enabled: false

Style/BracesAroundHashParameters:
  Enabled: false

Style/Documentation:
  Enabled: false # Was annoying, not needed

Layout/DotPosition:
  EnforcedStyle: trailing

Naming/FileName:
  Enabled: false # is really annoying and not good

Style/GuardClause:
  Enabled: false

Style/Not:
  Enabled: false

Style/NumericPredicate:
  Enabled: false

Style/RedundantSelf:
  Enabled: false

Style/SignalException:
  Enabled: false

Style/StringLiterals:
  Enabled: false

Style/TrailingCommaInLiteral:
  Enabled: false

Style/TrailingCommaInArguments:
  Enabled: false

Style/SymbolArray:
  Enabled: false

Metrics/AbcSize:
  Enabled: false

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*'

Metrics/ClassLength:
  Enabled: false

Metrics/CyclomaticComplexity:
  Enabled: false

Metrics/LineLength:
  Enabled: false

Metrics/MethodLength:
  Enabled: false

Metrics/PerceivedComplexity:
  Enabled: false

Lint/UselessAssignment:
  Enabled: false

Rails/Delegate:
  Enabled: false

Rails/HasAndBelongsToMany:
  Enabled: false

Rails/Output:
  Enabled: false # we use puts for things like migrations

Rails/Blank:
  Enabled: false

# We copy the 'default.yml' file provided by rubocop gem repo into the config/rubocop.yml file
# in order to make upgrades easy (just drop the new default in). This ensures we get the lastest
# config file when we upgrade with all new cops.
# Any non-default configuration should go into this file so that when we upgrade the dropped in
# new default file does not override any of our configurations.
# NOTE: Inorder to prioritize this file's declaration, we must inherit at bottom of file
inherit_from:
  - .default-rubocop.yml

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
seira-0.3.3 .rubocop.yml
seira-0.3.2 .rubocop.yml
seira-0.3.1 .rubocop.yml
seira-0.3.0 .rubocop.yml
seira-0.2.2 .rubocop.yml
seira-0.2.1 .rubocop.yml
seira-0.2.0 .rubocop.yml
seira-0.1.7 .rubocop.yml
seira-0.1.6 .rubocop.yml
seira-0.1.5 .rubocop.yml
seira-0.1.4 .rubocop.yml
seira-0.1.3 .rubocop.yml
seira-0.1.2 .rubocop.yml
seira-0.1.1 .rubocop.yml
seira-0.1.0 .rubocop.yml