Method has too many lines. [11/10] Open
def list
downloader = CatalogDownloader.new
catalog_template_list_helper = CatalogTemplateListHelper.new
templates = []
- Read upRead up
- Exclude checks
This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.
Final newline missing. Open
end
- Exclude checks
Line is too long. [91/80] Open
templates += catalog_template_list_helper.obtain_all_templates_from_a_catalog(path)
- Exclude checks
Missing top-level class documentation comment. Open
class Template < Thor
- Read upRead up
- Exclude checks
This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.
The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.
Example:
# bad
class Person
# ...
end
# good
# Description/Explanation of Person class
class Person
# ...
end
Line is too long. [94/80] Open
desc 'list', 'Prints out the list of all templates available in the shared GitHub catalog'
- Exclude checks
Use nested module/class definitions instead of compact style. Open
module Generamba::CLI
- Read upRead up
- Exclude checks
This cop checks the style of children definitions at classes and modules. Basically there are two different styles:
Example: EnforcedStyle: nested (default)
# good
# have each child on its own line
class Foo
class Bar
end
end
Example: EnforcedStyle: compact
# good
# combine definitions as much as possible
class Foo::Bar
end
The compact style is only forced for classes/modules with one child.