znamenica/dneslov

View on GitHub
app/models/concerns/with_titles.rb

Summary

Maintainability
B
6 hrs
Test Coverage

Method has too many lines. [78/15]
Open

   def self.included base
      base.class_eval do
         has_many :titles, -> { title }, as: :describable, class_name: :Title
         has_many :default_titles, -> { distinct }, through: :kind, source: :names, class_name: :Appellation
         has_many :all_titles, ->(this) do
Severity: Minor
Found in app/models/concerns/with_titles.rb by rubocop

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.

Assignment Branch Condition size for included is too high. [71.87/30]
Open

   def self.included base
      base.class_eval do
         has_many :titles, -> { title }, as: :describable, class_name: :Title
         has_many :default_titles, -> { distinct }, through: :kind, source: :names, class_name: :Appellation
         has_many :all_titles, ->(this) do
Severity: Minor
Found in app/models/concerns/with_titles.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Block has too many lines. [76/25]
Open

      base.class_eval do
         has_many :titles, -> { title }, as: :describable, class_name: :Title
         has_many :default_titles, -> { distinct }, through: :kind, source: :names, class_name: :Appellation
         has_many :all_titles, ->(this) do
            where( describable_type: model.name, describable_id: this.id, kind: "Title" )
Severity: Minor
Found in app/models/concerns/with_titles.rb by rubocop

This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

Method included has 78 lines of code (exceeds 25 allowed). Consider refactoring.
Open

   def self.included base
      base.class_eval do
         has_many :titles, -> { title }, as: :describable, class_name: :Title
         has_many :default_titles, -> { distinct }, through: :kind, source: :names, class_name: :Appellation
         has_many :all_titles, ->(this) do
Severity: Major
Found in app/models/concerns/with_titles.rb - About 3 hrs to fix

    Block has too many lines. [49/25]
    Open

             scope :with_titles, -> context do
                as = table.table_alias || table.name
                language_codes = [ context[:locales] ].flatten
                alphabeth_codes = Languageble.alphabeth_list_for( language_codes ).flatten
                selector = self.select_values.dup
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

    Method included has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

       def self.included base
          base.class_eval do
             has_many :titles, -> { title }, as: :describable, class_name: :Title
             has_many :default_titles, -> { distinct }, through: :kind, source: :names, class_name: :Appellation
             has_many :all_titles, ->(this) do
    Severity: Minor
    Found in app/models/concerns/with_titles.rb - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

             scope :with_title, -> context do
                as = table.table_alias || table.name
                language_codes = [context[:locales]].flatten
    
                selector = self.select_values.dup
    Severity: Major
    Found in app/models/concerns/with_titles.rb and 1 other location - About 1 hr to fix
    app/models/concerns/with_descriptions.rb on lines 53..68

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 76.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Do not use space inside array brackets.
    Open

                language_codes = [ context[:locales] ].flatten
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks that brackets used for array literals have or don't have surrounding space depending on configuration.

    Example: EnforcedStyle: space

    # The `space` style enforces that array literals have
    # surrounding space.
    
    # bad
    array = [a, b, c, d]
    
    # good
    array = [ a, b, c, d ]

    Example: EnforcedStyle: no_space

    # The `no_space` style enforces that array literals have
    # no surrounding space.
    
    # bad
    array = [ a, b, c, d ]
    
    # good
    array = [a, b, c, d]

    Example: EnforcedStyle: compact

    # The `compact` style normally requires a space inside
    # array brackets, with the exception that successive left
    # or right brackets are collapsed together in nested arrays.
    
    # bad
    array = [ a, [ b, c ] ]
    
    # good
    array = [ a, [ b, c ]]

    Space inside parentheses detected.
    Open

               .order( :describable_type )
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks for spaces inside ordinary round parentheses.

    Example:

    # bad
    f( 3)
    g = (a + 3 )
    
    # good
    f(3)
    g = (a + 3)

    Redundant self detected.
    Open

                selector = self.select_values.dup
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop checks for redundant uses of self.

    The usage of self is only needed when:

    • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

    • Calling an attribute writer to prevent an local variable assignment.

    Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

    Note we allow uses of self with operators because it would be awkward otherwise.

    Example:

    # bad
    def foo(bar)
      self.baz
    end
    
    # good
    def foo(bar)
      self.bar  # Resolves name clash with the argument.
    end
    
    def foo
      bar = 1
      self.bar  # Resolves name clash with the local variable.
    end
    
    def foo
      %w[x y z].select do |bar|
        self.bar == bar  # Resolves name clash with argument of the block.
      end
    end

    Wrap stabby lambda arguments with parentheses.
    Open

             scope :by_title, -> title do
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Check for parentheses around stabby lambda arguments. There are two different styles. Defaults to require_parentheses.

    Example: EnforcedStyle: require_parentheses (default)

    # bad
    ->a,b,c { a + b + c }
    
    # good
    ->(a,b,c) { a + b + c}

    Example: EnforcedStyle: requirenoparentheses

    # bad
    ->(a,b,c) { a + b + c }
    
    # good
    ->a,b,c { a + b + c}

    Use the lambda method for multiline lambdas.
    Open

             scope :by_title, -> title do
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop (by default) checks for uses of the lambda literal syntax for single line lambdas, and the method call syntax for multiline lambdas. It is configurable to enforce one of the styles for both single line and multiline lambdas as well.

    Example: EnforcedStyle: linecountdependent (default)

    # bad
    f = lambda { |x| x }
    f = ->(x) do
          x
        end
    
    # good
    f = ->(x) { x }
    f = lambda do |x|
          x
        end

    Example: EnforcedStyle: lambda

    # bad
    f = ->(x) { x }
    f = ->(x) do
          x
        end
    
    # good
    f = lambda { |x| x }
    f = lambda do |x|
          x
        end

    Example: EnforcedStyle: literal

    # bad
    f = lambda { |x| x }
    f = lambda do |x|
          x
        end
    
    # good
    f = ->(x) { x }
    f = ->(x) do
          x
        end

    Indent the first line of the right-hand-side of a multi-line assignment.
    Open

                                   "OR titles.describable_id = #{as}_kinds.id
                                   AND titles.describable_type = 'Subject'
                                   AND titles.type = 'Appellation'"
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop checks the indentation of the first line of the right-hand-side of a multi-line assignment.

    Example:

    # bad
    value =
    if foo
      'bar'
    end
    
    # good
    value =
      if foo
        'bar'
      end

    The indentation of the remaining lines can be corrected with other cops such as IndentationConsistency and EndAlignment.

    Do not use spaces between -> and opening brace in lambda literals
    Open

             scope :by_title, -> title do
                joins(:titles).where(titles: { text: title })
             end
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop checks for spaces between -> and opening parameter brace in lambda literals.

    Example: EnforcedStyle: requirenospace (default)

    # bad
      a = -> (x, y) { x + y }
    
      # good
      a = ->(x, y) { x + y }

    Example: EnforcedStyle: require_space

    # bad
      a = ->(x, y) { x + y }
    
      # good
      a = -> (x, y) { x + y }

    Do not use spaces between -> and opening brace in lambda literals
    Open

             scope :with_title, -> context do
                as = table.table_alias || table.name
                language_codes = [context[:locales]].flatten
    
                selector = self.select_values.dup
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop checks for spaces between -> and opening parameter brace in lambda literals.

    Example: EnforcedStyle: requirenospace (default)

    # bad
      a = -> (x, y) { x + y }
    
      # good
      a = ->(x, y) { x + y }

    Example: EnforcedStyle: require_space

    # bad
      a = ->(x, y) { x + y }
    
      # good
      a = -> (x, y) { x + y }

    Space inside parentheses detected.
    Open

                alphabeth_codes = Languageble.alphabeth_list_for( language_codes ).flatten
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks for spaces inside ordinary round parentheses.

    Example:

    # bad
    f( 3)
    g = (a + 3 )
    
    # good
    f(3)
    g = (a + 3)

    Do not use spaces between -> and opening brace in lambda literals
    Open

             scope :with_titles, -> context do
                as = table.table_alias || table.name
                language_codes = [ context[:locales] ].flatten
                alphabeth_codes = Languageble.alphabeth_list_for( language_codes ).flatten
                selector = self.select_values.dup
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop checks for spaces between -> and opening parameter brace in lambda literals.

    Example: EnforcedStyle: requirenospace (default)

    # bad
      a = -> (x, y) { x + y }
    
      # good
      a = ->(x, y) { x + y }

    Example: EnforcedStyle: require_space

    # bad
      a = ->(x, y) { x + y }
    
      # good
      a = -> (x, y) { x + y }

    Space inside parentheses detected.
    Open

               .order( :describable_type )
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks for spaces inside ordinary round parentheses.

    Example:

    # bad
    f( 3)
    g = (a + 3 )
    
    # good
    f(3)
    g = (a + 3)

    Favor modifier if usage when having a single-line body. Another good alternative is the usage of control flow &&/||.
    Open

                if selector.empty?
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks for if and unless statements that would fit on one line if written as a modifier if/unless. The maximum line length is configured in the Metrics/LineLength cop.

    Example:

    # bad
    if condition
      do_stuff(bar)
    end
    
    unless qux.empty?
      Foo.do_something
    end
    
    # good
    do_stuff(bar) if condition
    Foo.do_something unless qux.empty?

    Redundant self detected.
    Open

                if self.model.attribute_names.include?("kind_code")
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop checks for redundant uses of self.

    The usage of self is only needed when:

    • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

    • Calling an attribute writer to prevent an local variable assignment.

    Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

    Note we allow uses of self with operators because it would be awkward otherwise.

    Example:

    # bad
    def foo(bar)
      self.baz
    end
    
    # good
    def foo(bar)
      self.bar  # Resolves name clash with the argument.
    end
    
    def foo
      bar = 1
      self.bar  # Resolves name clash with the local variable.
    end
    
    def foo
      %w[x y z].select do |bar|
        self.bar == bar  # Resolves name clash with argument of the block.
      end
    end

    Wrap stabby lambda arguments with parentheses.
    Open

             scope :with_title, -> context do
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Check for parentheses around stabby lambda arguments. There are two different styles. Defaults to require_parentheses.

    Example: EnforcedStyle: require_parentheses (default)

    # bad
    ->a,b,c { a + b + c }
    
    # good
    ->(a,b,c) { a + b + c}

    Example: EnforcedStyle: requirenoparentheses

    # bad
    ->(a,b,c) { a + b + c }
    
    # good
    ->a,b,c { a + b + c}

    Use 3 (not -1) spaces for indenting an expression spanning multiple lines.
    Open

               .order( :describable_type )
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop checks the indentation of the method name part in method calls that span more than one line.

    Example: EnforcedStyle: aligned

    # bad
    while myvariable
    .b
      # do something
    end
    
    # good
    while myvariable
          .b
      # do something
    end
    
    # good
    Thing.a
         .b
         .c

    Example: EnforcedStyle: indented

    # good
    while myvariable
      .b
    
      # do something
    end

    Example: EnforcedStyle: indentedrelativeto_receiver

    # good
    while myvariable
            .a
            .b
    
      # do something
    end
    
    # good
    myvariable = Thing
                   .a
                   .b
                   .c

    Space inside parentheses detected.
    Open

                alphabeth_codes = Languageble.alphabeth_list_for( language_codes ).flatten
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks for spaces inside ordinary round parentheses.

    Example:

    # bad
    f( 3)
    g = (a + 3 )
    
    # good
    f(3)
    g = (a + 3)

    Redundant self detected.
    Open

                selector = self.select_values.dup
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop checks for redundant uses of self.

    The usage of self is only needed when:

    • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

    • Calling an attribute writer to prevent an local variable assignment.

    Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

    Note we allow uses of self with operators because it would be awkward otherwise.

    Example:

    # bad
    def foo(bar)
      self.baz
    end
    
    # good
    def foo(bar)
      self.bar  # Resolves name clash with the argument.
    end
    
    def foo
      bar = 1
      self.bar  # Resolves name clash with the local variable.
    end
    
    def foo
      %w[x y z].select do |bar|
        self.bar == bar  # Resolves name clash with argument of the block.
      end
    end

    Use the lambda method for multiline lambdas.
    Open

             has_many :all_titles, ->(this) do
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop (by default) checks for uses of the lambda literal syntax for single line lambdas, and the method call syntax for multiline lambdas. It is configurable to enforce one of the styles for both single line and multiline lambdas as well.

    Example: EnforcedStyle: linecountdependent (default)

    # bad
    f = lambda { |x| x }
    f = ->(x) do
          x
        end
    
    # good
    f = ->(x) { x }
    f = lambda do |x|
          x
        end

    Example: EnforcedStyle: lambda

    # bad
    f = ->(x) { x }
    f = ->(x) do
          x
        end
    
    # good
    f = lambda { |x| x }
    f = lambda do |x|
          x
        end

    Example: EnforcedStyle: literal

    # bad
    f = lambda { |x| x }
    f = lambda do |x|
          x
        end
    
    # good
    f = ->(x) { x }
    f = ->(x) do
          x
        end

    Use the lambda method for multiline lambdas.
    Open

             scope :with_titles, -> context do
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop (by default) checks for uses of the lambda literal syntax for single line lambdas, and the method call syntax for multiline lambdas. It is configurable to enforce one of the styles for both single line and multiline lambdas as well.

    Example: EnforcedStyle: linecountdependent (default)

    # bad
    f = lambda { |x| x }
    f = ->(x) do
          x
        end
    
    # good
    f = ->(x) { x }
    f = lambda do |x|
          x
        end

    Example: EnforcedStyle: lambda

    # bad
    f = ->(x) { x }
    f = ->(x) do
          x
        end
    
    # good
    f = lambda { |x| x }
    f = lambda do |x|
          x
        end

    Example: EnforcedStyle: literal

    # bad
    f = lambda { |x| x }
    f = lambda do |x|
          x
        end
    
    # good
    f = ->(x) { x }
    f = ->(x) do
          x
        end

    Space inside parentheses detected.
    Open

                where( describable_type: model.name, describable_id: this.id, kind: "Title" )
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks for spaces inside ordinary round parentheses.

    Example:

    # bad
    f( 3)
    g = (a + 3 )
    
    # good
    f(3)
    g = (a + 3)

    Space inside parentheses detected.
    Open

                  .or( Appellation.merge(this.kind.names) )
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks for spaces inside ordinary round parentheses.

    Example:

    # bad
    f( 3)
    g = (a + 3 )
    
    # good
    f(3)
    g = (a + 3)

    Prefer single-quoted strings when you don't need string interpolation or special symbols.
    Open

                if self.model.attribute_names.include?("kind_code")
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks if uses of quotes match the configured preference.

    Example: EnforcedStyle: single_quotes (default)

    # bad
    "No special symbols"
    "No string interpolation"
    "Just text"
    
    # good
    'No special symbols'
    'No string interpolation'
    'Just text'
    "Wait! What's #{this}!"

    Example: EnforcedStyle: double_quotes

    # bad
    'Just some text'
    'No special chars or interpolation'
    
    # good
    "Just some text"
    "No special chars or interpolation"
    "Every string in #{project} uses double_quotes"

    Use 3 (not 2) spaces for indenting an expression spanning multiple lines.
    Open

                  .or( Appellation.merge(this.kind.names) )
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop checks the indentation of the method name part in method calls that span more than one line.

    Example: EnforcedStyle: aligned

    # bad
    while myvariable
    .b
      # do something
    end
    
    # good
    while myvariable
          .b
      # do something
    end
    
    # good
    Thing.a
         .b
         .c

    Example: EnforcedStyle: indented

    # good
    while myvariable
      .b
    
      # do something
    end

    Example: EnforcedStyle: indentedrelativeto_receiver

    # good
    while myvariable
            .a
            .b
    
      # do something
    end
    
    # good
    myvariable = Thing
                   .a
                   .b
                   .c

    Space inside parentheses detected.
    Open

                  .or( Appellation.merge(this.kind.names) )
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks for spaces inside ordinary round parentheses.

    Example:

    # bad
    f( 3)
    g = (a + 3 )
    
    # good
    f(3)
    g = (a + 3)

    Prefer single-quoted strings when you don't need string interpolation or special symbols.
    Open

                where( describable_type: model.name, describable_id: this.id, kind: "Title" )
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks if uses of quotes match the configured preference.

    Example: EnforcedStyle: single_quotes (default)

    # bad
    "No special symbols"
    "No string interpolation"
    "Just text"
    
    # good
    'No special symbols'
    'No string interpolation'
    'Just text'
    "Wait! What's #{this}!"

    Example: EnforcedStyle: double_quotes

    # bad
    'Just some text'
    'No special chars or interpolation'
    
    # good
    "Just some text"
    "No special chars or interpolation"
    "Every string in #{project} uses double_quotes"

    Missing top-level module documentation comment.
    Open

    module WithTitles
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    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

    Do not use space inside array brackets.
    Open

                language_codes = [ context[:locales] ].flatten
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks that brackets used for array literals have or don't have surrounding space depending on configuration.

    Example: EnforcedStyle: space

    # The `space` style enforces that array literals have
    # surrounding space.
    
    # bad
    array = [a, b, c, d]
    
    # good
    array = [ a, b, c, d ]

    Example: EnforcedStyle: no_space

    # The `no_space` style enforces that array literals have
    # no surrounding space.
    
    # bad
    array = [ a, b, c, d ]
    
    # good
    array = [a, b, c, d]

    Example: EnforcedStyle: compact

    # The `compact` style normally requires a space inside
    # array brackets, with the exception that successive left
    # or right brackets are collapsed together in nested arrays.
    
    # bad
    array = [ a, [ b, c ] ]
    
    # good
    array = [ a, [ b, c ]]

    Space inside parentheses detected.
    Open

                where( describable_type: model.name, describable_id: this.id, kind: "Title" )
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Checks for spaces inside ordinary round parentheses.

    Example:

    # bad
    f( 3)
    g = (a + 3 )
    
    # good
    f(3)
    g = (a + 3)

    Use the lambda method for multiline lambdas.
    Open

             scope :with_title, -> context do
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    This cop (by default) checks for uses of the lambda literal syntax for single line lambdas, and the method call syntax for multiline lambdas. It is configurable to enforce one of the styles for both single line and multiline lambdas as well.

    Example: EnforcedStyle: linecountdependent (default)

    # bad
    f = lambda { |x| x }
    f = ->(x) do
          x
        end
    
    # good
    f = ->(x) { x }
    f = lambda do |x|
          x
        end

    Example: EnforcedStyle: lambda

    # bad
    f = ->(x) { x }
    f = ->(x) do
          x
        end
    
    # good
    f = lambda { |x| x }
    f = lambda do |x|
          x
        end

    Example: EnforcedStyle: literal

    # bad
    f = lambda { |x| x }
    f = lambda do |x|
          x
        end
    
    # good
    f = ->(x) { x }
    f = ->(x) do
          x
        end

    Wrap stabby lambda arguments with parentheses.
    Open

             scope :with_titles, -> context do
    Severity: Minor
    Found in app/models/concerns/with_titles.rb by rubocop

    Check for parentheses around stabby lambda arguments. There are two different styles. Defaults to require_parentheses.

    Example: EnforcedStyle: require_parentheses (default)

    # bad
    ->a,b,c { a + b + c }
    
    # good
    ->(a,b,c) { a + b + c}

    Example: EnforcedStyle: requirenoparentheses

    # bad
    ->(a,b,c) { a + b + c }
    
    # good
    ->a,b,c { a + b + c}

    There are no issues that match your filters.

    Category
    Status