Sha256: 13b708c2a251aee6ccea8cec3d229e864ec1efb124965e1407f67e5aabd55205

Contents?: true

Size: 1.42 KB

Versions: 4

Compression:

Stored size: 1.42 KB

Contents

require:
  - rubocop-md

AllCops:
  # Include gemspec and Rakefile
  Include:
    - 'lib/**/*.rb'
    - 'lib/**/*.rake'
    - 'spec/**/*.rb'
  Exclude:
    - 'bin/**/*'
    - 'spec/dummy/**/*'
    - 'vendor/**/*'
    - 'gemfiles/**/*'
    - 'tmp/**/*'
    - 'bench/**/*'
    - 'Rakefile'
    - 'Gemfile'
    - '*.gemspec'
  DisplayCopNames: true
  StyleGuideCopsOnly: false
  TargetRubyVersion: 2.3

Naming/AccessorMethodName:
  Enabled: false

Naming/UncommunicativeMethodParamName:
  Enabled: false

Style/TrivialAccessors:
  Enabled: false

Style/Documentation:
  Exclude:
    - 'spec/**/*.rb'

Style/StringLiterals:
  Enabled: false

Layout/SpaceInsideStringInterpolation:
  EnforcedStyle: no_space

Style/BlockDelimiters:
  Exclude:
    - 'spec/**/*.rb'

Style/PercentLiteralDelimiters:
  Enabled: false

Lint/AmbiguousRegexpLiteral:
  Enabled: false

Lint/MissingCopEnableDirective:
  Enabled: false

Lint/UselessAssignment:
  Exclude:
    - '**/*.md'

Metrics/MethodLength:
  Exclude:
    - 'spec/**/*.rb'

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*.rb'

Metrics/LineLength:
  Max: 100
  Exclude:
    - 'spec/**/*.rb'

Rails/Date:
  Enabled: false

Rails/TimeZone:
  Enabled: false

Style/NumericLiteralPrefix:
  Enabled: false

Lint/HandleExceptions:
  Enabled: true
  Exclude:
    - 'spec/**/*.rb'

Layout/DotPosition:
  EnforcedStyle: leading

Layout/IndentHeredoc:
  Enabled: false

Layout/EmptyLineAfterMagicComment:
  Enabled: false

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
logidze-0.9.0 .rubocop.yml
logidze-0.8.1 .rubocop.yml
logidze-0.8.0 .rubocop.yml
logidze-0.7.0 .rubocop.yml