master
module EGPRates
def currencies(table_rows)
# Extract the currencies from the image components src attribute
Checks for a newline after the final magic comment.
# good# frozen_string_literal: true # Some documentation for Personclass Person # Some codeend # bad# frozen_string_literal: true# Some documentation for Personclass Person # Some codeend
This cop checks whether method definitions are separated by one empty line.
NumberOfEmptyLines can be and integer (e.g. 1 by default) or an array (e.g. [1, 2]) to specificy a minimum and a maximum of empty lines.
NumberOfEmptyLines
AllowAdjacentOneLineDefs can be used to configure is adjacent one line methods definitions are an offense
AllowAdjacentOneLineDefs
# baddef aenddef bend
# gooddef aend def bend
This cops checks for two or more consecutive blank lines.
# bad - It has two empty lines.some_method# one empty line# two empty linessome_method # goodsome_method# one empty linesome_method