Sha256: eea49a921c807faf6ec1b5d755a4f10929748494dedd0b396f5b77d1be005daf

Contents?: true

Size: 1.19 KB

Versions: 7

Compression:

Stored size: 1.19 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
    - lib/cloudcannon-jekyll/readers/old-data-reader.rb # TODO remove this and fix warnings

Metrics/PerceivedComplexity:
  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

7 entries across 7 versions & 1 rubygems

Version Path
cloudcannon-jekyll-0.5.0 .rubocop.yml
cloudcannon-jekyll-0.4.0 .rubocop.yml
cloudcannon-jekyll-0.3.4 .rubocop.yml
cloudcannon-jekyll-0.3.3 .rubocop.yml
cloudcannon-jekyll-0.3.2 .rubocop.yml
cloudcannon-jekyll-0.3.1 .rubocop.yml
cloudcannon-jekyll-0.3.0 .rubocop.yml