1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2018-12-06 11:51:19 +0100 using RuboCop version 0.61.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 12
# Configuration parameters: CountComments, Max, ExcludedMethods.
# ExcludedMethods: refine
Metrics/BlockLength:
Exclude:
- 'spec/integrations_spec.rb'
- 'spec/jekyll_redirect_from/generator_spec.rb'
- 'spec/jekyll_redirect_from/redirect_page_spec.rb'
- 'spec/jekyll_redirect_from/redirectable_spec.rb'
- 'spec/spec_helper.rb'
# Offense count: 3
# Configuration parameters: Max, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Exclude:
- 'spec/jekyll_redirect_from/generator_spec.rb'
- 'spec/jekyll_redirect_from/redirect_page_spec.rb'
# Offense count: 1
# Configuration parameters: EnforcedStyleForLeadingUnderscores.
# SupportedStylesForLeadingUnderscores: disallowed, required, optional
Naming/MemoizedInstanceVariableName:
Exclude:
- 'lib/jekyll-redirect-from/page_without_a_file.rb'
# Offense count: 2
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
# AllowedNames: io, id, to, by, on, in, at, ip, db
Naming/UncommunicativeMethodParamName:
Exclude:
- 'lib/jekyll-redirect-from/redirect_page.rb'
|