Sha256: 3db5a2e420eb119b32bf2a9362b6889d89abbf24938d7cc2b306c2d1e2e97b11

Contents?: true

Size: 1.79 KB

Versions: 11

Compression:

Stored size: 1.79 KB

Contents

# inherits from https://github.com/bbatsov/rubocop/blob/master/config/default.yml

AllCops:
  Exclude:
    - spec/support/schema.rb
    - bin/**/*
    - tmp/**/*
    - vendor/**/*
    - .bundle/**/*
  Rails:
    Enabled: true
  DisplayCopNames: true
  DisplayStyleGuide: true

Documentation:
  Enabled: false

Metrics/AbcSize:
  Enabled: true
  Max: 40
Metrics/BlockLength:
  Exclude:
    - spec/**/*
Metrics/CyclomaticComplexity:
  Enabled: true
  Max: 12
Metrics/LineLength:
  Enabled: true
  Max: 140
Metrics/PerceivedComplexity:
  Enabled: true
  Max: 12
Metrics/ClassLength:
  Enabled: true
  CountComments: false
  Max: 200
Metrics/ModuleLength:
  CountComments: false
  Max: 200
  Enabled: true
Metrics/MethodLength:
  StyleGuide: https://github.com/bbatsov/ruby-style-guide#short-methods
  Enabled: true
  CountComments: false
  Max: 50
Metrics/ParameterLists:
  StyleGuide: https://github.com/bbatsov/ruby-style-guide#too-many-params
  Enabled: true
  Max: 5
  CountKeywordArgs: true

Lint/AssignmentInCondition:
  StyleGuide: https://github.com/bbatsov/ruby-style-guide#safe-assignment-in-condition
  Enabled: true
  AllowSafeAssignment: true
Lint/UnusedBlockArgument:
  Enabled: false

Style/AccessorMethodName:
  Enabled: true
Style/AlignHash:
  EnforcedColonStyle: key
  EnforcedHashRocketStyle: key
Style/AlignParameters:
  EnforcedStyle: with_fixed_indentation
Style/Alias:
  StyleGuide: https://github.com/bbatsov/ruby-style-guide#alias-method
  EnforcedStyle: prefer_alias_method
Style/BracesAroundHashParameters:
  Exclude:
    - spec/**/*
Style/CaseIndentation:
  EnforcedStyle: case
  SupportedStyles:
    - case
    - end
  IndentOneStep: false
Style/IndentHash:
  EnforcedStyle: consistent
Style/RaiseArgs:
  Enabled: false
Style/SignalException:
  Enabled: false
Style/SpecialGlobalVars:
  Enabled: false

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
reports_kits-0.7.8 .rubocop.yml
reports_kits-0.7.7 .rubocop.yml
reports_kit-0.7.1 .rubocop.yml
reports_kit-0.7.0 .rubocop.yml
reports_kit-0.5.0 .rubocop.yml
reports_kit-0.4.1 .rubocop.yml
reports_kit-0.4.0 .rubocop.yml
reports_kit-0.3.3 .rubocop.yml
reports_kit-0.3.2 .rubocop.yml
reports_kit-0.3.1 .rubocop.yml
reports_kit-0.3.0 .rubocop.yml