afaur/ruby-nicefn

View on GitHub
exa/before/sing.rb

Summary

Maintainability
A
0 mins
Test Coverage

Use module_function instead of extend self.
Wontfix

  extend self
Severity: Minor
Found in exa/before/sing.rb by rubocop

This cops checks for use of extend self or module_function in a module.

Supported styles are: modulefunction, extendself.

Example: EnforcedStyle: module_function (default)

# bad
module Test
  extend self
  # ...
end

# good
module Test
  module_function
  # ...
end

Example: EnforcedStyle: extend_self

# bad
module Test
  module_function
  # ...
end

# good
module Test
  extend self
  # ...
end

These offenses are not auto-corrected since there are different implications to each approach.

There are no issues that match your filters.

Category
Status