parent
67107f0ec5
commit
8ccb013f85
|
|
@ -92,9 +92,6 @@ Naming/MemoizedInstanceVariableName:
|
||||||
- lib/jekyll/drops/site_drop.rb
|
- lib/jekyll/drops/site_drop.rb
|
||||||
- lib/jekyll/drops/unified_payload_drop.rb
|
- lib/jekyll/drops/unified_payload_drop.rb
|
||||||
- lib/jekyll/page_without_a_file.rb
|
- lib/jekyll/page_without_a_file.rb
|
||||||
Naming/UncommunicativeMethodParamName:
|
|
||||||
AllowedNames:
|
|
||||||
- _
|
|
||||||
Security/MarshalLoad:
|
Security/MarshalLoad:
|
||||||
Exclude:
|
Exclude:
|
||||||
- !ruby/regexp /test\/.*.rb$/
|
- !ruby/regexp /test\/.*.rb$/
|
||||||
|
|
|
||||||
|
|
@ -283,7 +283,7 @@ module Jekyll
|
||||||
config
|
config
|
||||||
end
|
end
|
||||||
|
|
||||||
def renamed_key(old, new, config, _ = nil)
|
def renamed_key(old, new, config)
|
||||||
if config.key?(old)
|
if config.key?(old)
|
||||||
Jekyll::Deprecator.deprecation_message "The '#{old}' configuration" \
|
Jekyll::Deprecator.deprecation_message "The '#{old}' configuration" \
|
||||||
" option has been renamed to '#{new}'. Please update your config" \
|
" option has been renamed to '#{new}'. Please update your config" \
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ module Jekyll
|
||||||
# ext - The String extension to check.
|
# ext - The String extension to check.
|
||||||
#
|
#
|
||||||
# Returns true if it matches, false otherwise.
|
# Returns true if it matches, false otherwise.
|
||||||
def matches(_)
|
def matches(_ext)
|
||||||
false
|
false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -46,7 +46,7 @@ module Jekyll
|
||||||
# ext - The String extension or original file.
|
# ext - The String extension or original file.
|
||||||
#
|
#
|
||||||
# Returns The String output file extension.
|
# Returns The String output file extension.
|
||||||
def output_ext(_)
|
def output_ext(_ext)
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue