Sha256: eb47aa7c89f006caf7f2a67d2d6e302216a0b9d63ae4733ef948ab85e4eb5328

Contents?: true

Size: 802 Bytes

Versions: 9

Compression:

Stored size: 802 Bytes

Contents

inherit_from:
  - https://raw.githubusercontent.com/riboseinc/oss-guides/master/ci/rubocop.yml

# local repo-specific modifications

AllCops:
  TargetRubyVersion: 2.4

# This one breaks plenty of RSpec idioms.
Lint/AmbiguousBlockAssociation:
  Exclude:
    - "spec/**/*"

# Defining a constant or class inside RSpec.describe block
# sometimes makes sense.
Lint/ConstantDefinitionInBlock:
  Exclude:
    - "spec/**/*"

# This requirement is silly to me.
Style/AccessModifierDeclarations:
  Enabled: false

# Makes little sense for Glossarist models, as these attr_accessors should all
# be documented eventually.
Style/AccessorGrouping:
  Enabled: false

# This requirement is silly to me.
Style/ClassCheck:
  Enabled: false

# This requirement is silly to me.
Style/SingleArgumentDig:
  Enabled: false

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
glossarist-new-1.0.4 .rubocop.yml
glossarist-new-1.0.3 .rubocop.yml
glossarist-new-1.0.2 .rubocop.yml
glossarist-new-1.0.1 .rubocop.yml
glossarist-new-1.0.0 .rubocop.yml
glossarist-0.2.0 .rubocop.yml
glossarist-0.1.2 .rubocop.yml
glossarist-0.1.1 .rubocop.yml
glossarist-0.1.0 .rubocop.yml