Sha256: b7638a61ead9616fa3278de92a869af0f1dadebe7c7da3ed7b02ec33baf4de1d

Contents?: true

Size: 809 Bytes

Versions: 4

Compression:

Stored size: 809 Bytes

Contents

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

AllCops:
  NewCops: enable
  TargetRubyVersion: 2.5

Bundler/OrderedGems:
  Enabled: false

Gemspec/RequireMFA:
  Enabled: false

Layout/EmptyLineBetweenDefs:
  Enabled: true
  AllowAdjacentOneLineDefs: true

Layout/IndentationConsistency:
  Enabled: true
  EnforcedStyle: indented_internal_methods

Layout/LineLength:
  Enabled: true
  Max: 100

Metrics/AbcSize:
  Enabled: false

Metrics/BlockLength:
  Enabled: true
  Exclude:
    - 'rakelib/**/*'

Metrics/ClassLength:
  Enabled: true
  Exclude:
    - 'lib/itax_code/utils.rb'
    - 'test/**/*'

Metrics/MethodLength:
  Enabled: true
  CountAsOne: ['array', 'hash']

Style/Documentation:
  Enabled: false

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes
...

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
itax_code-2.0.1 .rubocop.yml
itax_code-2.0.0 .rubocop.yml
itax_code-1.0.1 .rubocop.yml
itax_code-1.0.0 .rubocop.yml