Sha256: 15beaad27f65e687695f1455ca95025a9eeb57a0d0b93fff55c52cf41f5b1e78

Contents?: true

Size: 1.07 KB

Versions: 7

Compression:

Stored size: 1.07 KB

Contents

require:
  - rubocop-rails
  - rubocop-performance

inherit_gem:
  rubocop-rails_config:
    - config/rails.yml

AllCops:
  Exclude:
    - db/schema.rb
    - 'node_modules/**/*'
    - 'redis-stable/**/*'
    - 'bin/**/*'
    - 'vendor/**/*'
  TargetRubyVersion: 3.1

# This sets us to use the standard Rails format instead of Rubocop's
# opinionated Ruby style.
Style/FrozenStringLiteralComment:
  Enabled: false

# This sets us to use the standard Rails format instead of Rubocop's
# opinionated Ruby style.
Style/ClassAndModuleChildren:
  Enabled: false

# Temporarily turn this off
Metrics/AbcSize:
  Enabled: false

Metrics/ClassLength:
  Enabled: false

Lint/RescueException:
  Enabled: true

Lint/Debugger:
  Enabled: true

Rails/HasManyOrHasOneDependent:
  Enabled: true

Rails/HasAndBelongsToMany:
  Enabled: true

Style/NumericPredicate:
  Enabled: true

Style/HashSyntax:
  EnforcedShorthandSyntax: 'never'

# This sets us to use the standard Rails format instead of Rubocop's
# opinionated Ruby style.
Layout/EmptyLinesAroundAccessModifier:
  Enabled: true
  EnforcedStyle: 'around'

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
eikon-0.1.5 .rubocop.yml
eikon-0.1.4 .rubocop.yml
eikon-0.1.3 .rubocop.yml
eikon-0.1.2 .rubocop.yml
zelkova-0.1.1 .rubocop.yml
zelkova-0.1.0 .rubocop.yml
eikon-0.1.1 .rubocop.yml