Sha256: 7ac0a107123d9a374060fb81e355f3f12f575c4802176ca96e2bac9472e3d393

Contents?: true

Size: 1.21 KB

Versions: 1

Compression:

Stored size: 1.21 KB

Contents

require: rubocop-jekyll

inherit_gem:
  rubocop-jekyll: .rubocop.yml

AllCops:
  TargetRubyVersion: 2.4
  Include:
    - lib/**/*.rb

  Exclude:
    - .gitignore
    - .rspec
    - .rubocop.yml
    - .travis.yml
    - Gemfile.lock
    - HISTORY.md
    - LICENSE.txt
    - README.md
    - script/**/*
    - vendor/**/*
    - gemfiles/**/*

Naming/MemoizedInstanceVariableName:
  Exclude:
    - lib/cloudcannon-jekyll/page-without-a-file.rb

Metrics/CyclomaticComplexity:
  Exclude:
    - lib/cloudcannon-jekyll/jsonify-filter.rb # TODO remove this and fix warnings

Metrics/PerceivedComplexity:
  Exclude:
    - lib/cloudcannon-jekyll/jsonify-filter.rb # TODO remove this and fix warnings

Metrics/MethodLength:
  Exclude:
    - lib/cloudcannon-jekyll/jsonify-filter.rb # TODO remove this and fix warnings

Metrics/AbcSize:
  Exclude:
    - lib/cloudcannon-jekyll/jsonify-filter.rb # TODO remove this and fix warnings

# This is excluded since the ruby target is 2.3.8 which doesn't support String.match?(Regexp)
Performance/RegexpMatch:
  Exclude:
    - lib/cloudcannon-jekyll/generator.rb

# This is excluded since Jekyll used this and we need to check for it
Lint/UnifiedInteger:
  Exclude:
    - lib/cloudcannon-jekyll/jsonify-filter.rb

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cloudcannon-jekyll-0.2.1 .rubocop.yml