Sha256: ddd56dbaa3db21a2a3245c1a7011e662eacfe7058eca2fb8635dc0fc16843cd4

Contents?: true

Size: 596 Bytes

Versions: 3

Compression:

Stored size: 596 Bytes

Contents

# Exclude unimportant files
require:
  - rubocop-minitest
  - rubocop-rake

AllCops:
  NewCops: enable
  Include:
    - 'lib/**/*.rb'
    - 'test/**/*.rb'
    - 'Gemfile'
    - 'Rakefile'
    - '*.gemspec'

  Exclude:
    - '**/.bundle/*'
    - '**/.git/*'
    - '**/.github/*'
    - '**/bin/**/*'
    - '**/coverage/**/*'
    - '**/docs/**/*'
    - '**/imagemagick/*'
    - '**/pkg/**/*'
    - '**/vendor/**/*'

Layout/LineLength:
  Max: 120

# Disabled Cops
Style/FrozenStringLiteralComment:
  Enabled: false

Style/StringConcatenation:
  Enabled: false

Metrics/MethodLength:
  Enabled: false

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jekyll_picture_tag-2.1.2 .rubocop.yml
jekyll_picture_tag-2.1.1 .rubocop.yml
jekyll_picture_tag-2.1.0 .rubocop.yml