Sha256: b08584b00a05557b9ff6fe5331a7011eb82b3a75a92487f640fa2b0a3bcee07f

Contents?: true

Size: 885 Bytes

Versions: 2

Compression:

Stored size: 885 Bytes

Contents

AllCops:
  TargetRubyVersion: 3.2
  NewCops: enable
  SuggestExtensions: true

  Include:
    - spec/**/*.rb
    - lib/**/*.rb

  Exclude:
    - vendor/**/*

require:
  - rubocop-performance
  - rubocop-rspec
  - rubocop-rake
  - rubocop-disable_syntax

Style/DisableSyntax:
  DisableSyntax:
    - endless_methods

Layout/LineLength:
  Max: 120

Metrics/BlockLength:
  Exclude:
    - spec/**/*_spec.rb
    - "*.gemspec"

RSpec/NamedSubject:
  Enabled: false

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  Enabled: true
  EnforcedStyle: double_quotes

Style/Documentation:
  Enabled: false

Style/SymbolArray:
  EnforcedStyle: brackets

Style/WordArray:
  EnforcedStyle: brackets

Style/ClassAndModuleChildren:
  EnforcedStyle: compact

Style/NumberedParametersLimit:
  Max: 2

Naming/FileName:
  Exclude:
    - cryptoform

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cryptoform-0.4.0 .rubocop.yml
cryptoform-0.2.0 .rubocop.yml