Sha256: 4f2d808fe2d47301a1ae9cbc3133a969cc593c1baea1287e32a64dfa68157907

Contents?: true

Size: 1.51 KB

Versions: 14

Compression:

Stored size: 1.51 KB

Contents

# Generated by `rubocop --auto-gen-config`
inherit_from: .rubocop_todo.yml

# Exclude temporary files
AllCops:
  Exclude:
    - tmp/**/*

# It’s quite readable when we know what we are doing
Lint/AssignmentInCondition:
  Enabled: false

# No need to handle LoadError in Rakefile
Lint/HandleExceptions:
  Exclude:
    - Rakefile

# gemspec is a special snowflake
Metrics/LineLength:
  Exclude:
    - rom.gemspec

# The enforced style doesn’t match Vim’s defaults
Style/AlignParameters:
  Enabled: false

# UTF-8 is perfectly fine in comments
Style/AsciiComments:
  Enabled: false

# Allow using braces for value-returning blocks
Style/Blocks:
  Enabled: false

# Documentation checked by Inch CI
Style/Documentation:
  Enabled: false

# Early returns have their vices
Style/GuardClause:
  Enabled: false

# Need to be skipped for >-> usage
Style/Lambda:
  Enabled: false

# Multiline block chains are ok
Style/MultilineBlockChain:
  Enabled: false

# Result::Success and Result::Failure use > for callbacks
Style/OpMethod:
  Exclude:
    - lib/rom/command_registry.rb

# Even a single escaped slash can be confusing
Style/RegexpLiteral:
  MaxSlashes: 0

# Don’t introduce semantic fail/raise distinction
Style/SignalException:
  EnforcedStyle: only_raise

# Need to be skipped for >-> usage
Style/SpaceAroundOperators:
  Enabled: false

# Accept both single and double quotes
Style/StringLiterals:
  Enabled: false

# Allow def self.foo; @foo; end
Style/TrivialAccessors:
  Enabled: false

# Allow rom-sql
Style/FileName:
    Enabled: false

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
rom-sql-0.6.1 .rubocop.yml
rom-sql-0.6.0 .rubocop.yml
rom-sql-0.6.0.rc1 .rubocop.yml
rom-sql-0.6.0.beta1 .rubocop.yml
rom-sql-0.5.3 .rubocop.yml
rom-sql-0.5.2 .rubocop.yml
rom-sql-0.5.1 .rubocop.yml
rom-sql-0.5.0 .rubocop.yml
rom-sql-0.4.3 .rubocop.yml
rom-sql-0.4.1 .rubocop.yml
rom-sql-0.4.0 .rubocop.yml
rom-sql-0.4.0.rc1 .rubocop.yml
rom-sql-0.4.0.beta2 .rubocop.yml
rom-sql-0.4.0.beta1 .rubocop.yml