Sha256: 1c8ba2585e8e647c7f74663d3e6df55a5c44b3c11d19a5ef5fb8e4855b8c379b

Contents?: true

Size: 1.43 KB

Versions: 1

Compression:

Stored size: 1.43 KB

Contents

inherit_from: .rubocop_todo.yml

require:
  - rubocop-performance
  - rubocop-minitest
  - rubocop-rake

AllCops:
  NewCops: enable
  TargetRubyVersion: 2.7
  Exclude:
    - 'examples/**/*'
    - 'vendor/**/*'
    - 'spec/fixtures/**/*'
    - 'tmp/**/*'
    - '.git/**/*'
    - 'bin/*'

Layout/LineLength:
  Max: 120

Layout/ExtraSpacing:
  AllowBeforeTrailingComments: true

Layout/MultilineMethodCallIndentation:
  Enabled: false

Lint/UnderscorePrefixedVariableName:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/AccessModifierDeclarations:
  Enabled: false

Style/CaseEquality:
  Enabled: false

Style/ClassAndModuleChildren:
  Enabled: false

Style/Lambda:
  EnforcedStyle: literal

Style/ParallelAssignment:
  Enabled: false

Style/SingleLineMethods:
  Enabled: false

Style/FormatStringToken:
  Enabled: false

Style/MapToSet:
  Enabled: false

Style/MixinGrouping:
  Enabled: false

Naming/MethodName:
  Enabled: false

Naming/VariableName:
  Enabled: false

Naming/MemoizedInstanceVariableName:
  Enabled: false

Metrics/AbcSize:
  Exclude:
    - lib/bcdd/ext/value.rb

Metrics/BlockLength:
  Exclude:
    - test/**/*.rb

Metrics/ClassLength:
  Exclude:
    - test/**/*.rb

Minitest/MultipleAssertions:
  Enabled: false

Minitest/AssertEmptyLiteral:
  Enabled: false

Minitest/AssertOperator:
  Enabled: false

Minitest/AssertWithExpectedArgument:
  Exclude:
    - test/test_helper.rb

Naming/FileName:
  Exclude:
    - lib/bcdd-process.rb

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bcdd-process-0.4.0 .rubocop.yml