Sha256: b19e7b60e6e0d756e001f101f0e3fa7b5ec056f7d9876998f8f53d662d4975a6

Contents?: true

Size: 1.72 KB

Versions: 9

Compression:

Stored size: 1.72 KB

Contents

AllCops:
  # Include common Ruby source files.
  Include:
     - 'lib/**/*.rb'
     - 'app/**/*.rb'
     - 'spec/**/*.rb'
  Exclude:
    - 'spec/dummy/**/*'
    - "db/**/*"
    - "tmp/**/*"
    - "vendor/**/*"
    - "bin/**/*"
    - "log/**/*"

  DisplayCopNames: true
  DisplayStyleGuide: true

Style/IfUnlessModifier:
  MaxLineLength: 160

Style/StringLiterals:
  Enabled: false

Style/StringLiteralsInInterpolation:
  Enabled: false

Style/WhileUntilModifier:
  MaxLineLength: 160

Metrics/LineLength:
  Max: 160
  # To make it possible to copy or click on URIs in the code, we allow lines
  # contaning a URI to be longer than Max.
  AllowURI: true
  URISchemes:
    - http
    - https
  Enabled: false

Style/SpaceAroundBlockParameters:
  EnforcedStyleInsidePipes: no_space
  SupportedStyles:
    - space
    - no_space

Style/SpaceAroundOperators:
  MultiSpaceAllowedForOperators:
    - '='
    - '=>'

Style/SpaceBeforeBlockBraces:
  EnforcedStyle: space
  SupportedStyles:
    - space
    - no_space

Style/SpaceInsideBlockBraces:
  EnforcedStyle: space
  SupportedStyles:
    - space
    - no_space
  # Valid values are: space, no_space
  EnforcedStyleForEmptyBraces: no_space
  # Space between { and |. Overrides EnforcedStyle if there is a conflict.
  SpaceBeforeBlockParameters: true

Style/SpaceInsideHashLiteralBraces:
  EnforcedStyle: no_space
  EnforcedStyleForEmptyBraces: no_space
  SupportedStyles:
    - space
    - no_space

SingleSpaceBeforeFirstArg:
  Enabled: false

Style/EmptyLinesAroundBlockBody:
  Enabled: false

Style/TrailingBlankLines:
  Enabled: false

Style/TrailingWhitespace:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/IndentHash:
  Enabled: false

# TODO: enable
Metrics/PerceivedComplexity:
  Enabled: false

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sharing_tags-0.0.18 .rubocop.yml
sharing_tags-0.0.17 .rubocop.yml
sharing_tags-0.0.16 .rubocop.yml
sharing_tags-0.0.15 .rubocop.yml
sharing_tags-0.0.14 .rubocop.yml
sharing_tags-0.0.13 .rubocop.yml
sharing_tags-0.0.12 .rubocop.yml
sharing_tags-0.0.11 .rubocop.yml
sharing_tags-0.0.10 .rubocop.yml