Sha256: dbdd838a5dc0e6fb8948ae07b5533695df3a20a0aff2518c5c3e9a4cd1d04c7b

Contents?: true

Size: 1.37 KB

Versions: 3

Compression:

Stored size: 1.37 KB

Contents

inherit_from: .rubocop_todo.yml

AllCops:
  TargetRubyVersion: 2.2
  DisplayCopNames: true
  DisplayStyleGuide: true
  Include:
    - '**/Gemfile'
    - '**/Rakefile'

Layout/AlignParameters:
  EnforcedStyle: with_fixed_indentation
  IndentationWidth: 4

Layout/FirstParameterIndentation:
  EnforcedStyle: consistent
  IndentationWidth: 4

Layout/IndentArray:
  EnforcedStyle: consistent

Layout/IndentHash:
  EnforcedStyle: consistent

Layout/IndentAssignment:
  IndentationWidth: 4

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented
  IndentationWidth: 4

Layout/MultilineOperationIndentation:
  EnforcedStyle: indented
  IndentationWidth: 4

Metrics/BlockLength:
  Exclude:
    - '*.gemspec'

Metrics/LineLength:
  Max: 107
  AllowHeredoc: true
  AllowURI: true
  IgnoreCopDirectives: true

Naming/FileName:
  Exclude:
    - 'activerecord-time.gemspec'
    - 'lib/activerecord-time.rb'

Rails:
  Enabled: true

Security/Eval:
  Exclude:
    - 'gemfiles/*.gemfile'

Style/Documentation:
  Enabled: false

Style/Encoding:
  Enabled: true

Style/FormatString:
  EnforcedStyle: percent

Style/NumericPredicate:
  Enabled: false

Style/RescueStandardError:
  EnforcedStyle: implicit

Style/SafeNavigation:
  ConvertCodeThatCanStartToReturnNil: true

Style/TrailingCommaInArrayLiteral:
  EnforcedStyleForMultiline: comma

Style/TrailingCommaInHashLiteral:
  EnforcedStyleForMultiline: comma

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activerecord-time-0.12.0 .rubocop.yml
activerecord-time-0.10.1 .rubocop.yml
activerecord-time-0.10.0 .rubocop.yml