znamenica/dneslov

View on GitHub
app/validators/alphabeth_validator.rb

Summary

Maintainability
A
3 hrs
Test Coverage
A
96%

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

   def validate_each(record, attribute, value)
      o = plain_options
      code = record.alphabeth_code.to_s.to_sym
      res = Languageble::MATCH_TABLE[ code ]
      if res

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 validate_each is too high. [45.32/30]
Open

   def validate_each(record, attribute, value)
      o = plain_options
      code = record.alphabeth_code.to_s.to_sym
      res = Languageble::MATCH_TABLE[ code ]
      if res

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

Cyclomatic complexity for validate_each is too high. [12/6]
Open

   def validate_each(record, attribute, value)
      o = plain_options
      code = record.alphabeth_code.to_s.to_sym
      res = Languageble::MATCH_TABLE[ code ]
      if res

This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

Perceived complexity for validate_each is too high. [12/7]
Open

   def validate_each(record, attribute, value)
      o = plain_options
      code = record.alphabeth_code.to_s.to_sym
      res = Languageble::MATCH_TABLE[ code ]
      if res

This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

Example:

def my_method                   # 1
  if cond                       # 1
    case var                    # 2 (0.8 + 4 * 0.2, rounded)
    when 1 then func_one
    when 2 then func_two
    when 3 then func_three
    when 4..10 then func_other
    end
  else                          # 1
    do_something until a && b   # 2
  end                           # ===
end                             # 7 complexity points

Method validate_each has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

   def validate_each(record, attribute, value)
      o = plain_options
      code = record.alphabeth_code.to_s.to_sym
      res = Languageble::MATCH_TABLE[ code ]
      if res
Severity: Minor
Found in app/validators/alphabeth_validator.rb - About 2 hrs 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

Method validate_each has 33 lines of code (exceeds 25 allowed). Consider refactoring.
Open

   def validate_each(record, attribute, value)
      o = plain_options
      code = record.alphabeth_code.to_s.to_sym
      res = Languageble::MATCH_TABLE[ code ]
      if res
Severity: Minor
Found in app/validators/alphabeth_validator.rb - About 1 hr to fix

    Space inside parentheses detected.
    Open

             if o.keys.include?( :allow )

    Checks for spaces inside ordinary round parentheses.

    Example:

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

    Do not use space inside reference brackets.
    Open

                parts = invalid_is.map { |i| value[ i - 2..i + 2 ] }

    Checks that reference brackets have or don't have surrounding space depending on configuration.

    Example: EnforcedStyle: no_space (default)

    # The `no_space` style enforces that reference brackets have
    # no surrounding space.
    
    # bad
    hash[ :key ]
    array[ index ]
    
    # good
    hash[:key]
    array[index]

    Example: EnforcedStyle: space

    # The `space` style enforces that reference brackets have
    # surrounding space.
    
    # bad
    hash[:key]
    array[index]
    
    # good
    hash[ :key ]
    array[ index ]

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

             if ! o.keys.include?( :nosyntax )

    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?

    Space inside parentheses detected.
    Open

             if o.keys.include?( :allow )

    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

             end.compact.uniq.sort.pack( "U*" )

    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

                   message: I18n.t( 'activerecord.errors.invalid_utf8_char', alphabeth: record.alphabeth_code,

    Checks for spaces inside ordinary round parentheses.

    Example:

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

    Do not leave space between ! and its argument.
    Open

             if ! o.keys.include?( :nosyntax )

    This cop checks for space after !.

    Example:

    # bad
    ! something
    
    # good
    !something

    Do not use space inside array brackets.
    Open

          [ options[:with], options[:in] ].flatten.compact.map do |o|

    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 ]]

    Do not use space inside reference brackets.
    Open

          res = Languageble::MATCH_TABLE[ code ]

    Checks that reference brackets have or don't have surrounding space depending on configuration.

    Example: EnforcedStyle: no_space (default)

    # The `no_space` style enforces that reference brackets have
    # no surrounding space.
    
    # bad
    hash[ :key ]
    array[ index ]
    
    # good
    hash[:key]
    array[index]

    Example: EnforcedStyle: space

    # The `space` style enforces that reference brackets have
    # surrounding space.
    
    # bad
    hash[:key]
    array[index]
    
    # good
    hash[ :key ]
    array[ index ]

    Do not use space inside reference brackets.
    Open

                res += Languageble::SYNTAX_TABLE[ code ]

    Checks that reference brackets have or don't have surrounding space depending on configuration.

    Example: EnforcedStyle: no_space (default)

    # The `no_space` style enforces that reference brackets have
    # no surrounding space.
    
    # bad
    hash[ :key ]
    array[ index ]
    
    # good
    hash[:key]
    array[index]

    Example: EnforcedStyle: space

    # The `space` style enforces that reference brackets have
    # surrounding space.
    
    # bad
    hash[:key]
    array[index]
    
    # good
    hash[ :key ]
    array[ index ]

    Space inside parentheses detected.
    Open

             end.compact.uniq.sort.pack( "U*" )

    Checks for spaces inside ordinary round parentheses.

    Example:

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

    Do not use space inside array brackets.
    Open

          end.flatten.map { |x| [ x.keys.first, x.values.first ] }.to_h

    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 ]]

    Do not use space inside array brackets.
    Open

          end.flatten.map { |x| [ x.keys.first, x.values.first ] }.to_h

    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

          if res && value.present? && value !~ ( re = /^[#{res}]+$/ )

    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

          if res && value.present? && value !~ ( re = /^[#{res}]+$/ )

    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

             end.compact.uniq.sort.pack( "U*" )

    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"

    Space inside parentheses detected.
    Open

             if ! o.keys.include?( :nosyntax )

    Checks for spaces inside ordinary round parentheses.

    Example:

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

    Missing top-level class documentation comment.
    Open

    class AlphabethValidator < ActiveModel::EachValidator

    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

    Use def without parentheses.
    Open

       def validate_each(record, attribute, value)

    This cops checks for parentheses around the arguments in method definitions. Both instance and class/singleton methods are checked.

    Example: EnforcedStyle: require_parentheses (default)

    # The `require_parentheses` style requires method definitions
    # to always use parentheses
    
    # bad
    def bar num1, num2
      num1 + num2
    end
    
    def foo descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name
      do_something
    end
    
    # good
    def bar(num1, num2)
      num1 + num2
    end
    
    def foo(descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name)
      do_something
    end

    Example: EnforcedStyle: requirenoparentheses

    # The `require_no_parentheses` style requires method definitions
    # to never use parentheses
    
    # bad
    def bar(num1, num2)
      num1 + num2
    end
    
    def foo(descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name)
      do_something
    end
    
    # good
    def bar num1, num2
      num1 + num2
    end
    
    def foo descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name
      do_something
    end

    Example: EnforcedStyle: requirenoparenthesesexceptmultiline

    # The `require_no_parentheses_except_multiline` style prefers no
    # parantheses when method definition arguments fit on single line,
    # but prefers parantheses when arguments span multiple lines.
    
    # bad
    def bar(num1, num2)
      num1 + num2
    end
    
    def foo descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name
      do_something
    end
    
    # good
    def bar num1, num2
      num1 + num2
    end
    
    def foo(descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name)
      do_something
    end

    Avoid multi-line chains of blocks.
    Open

          end.flatten.map { |x| [ x.keys.first, x.values.first ] }.to_h

    This cop checks for chaining of a block after another block that spans multiple lines.

    Example:

    Thread.list.find_all do |t|
      t.alive?
    end.map do |t|
      t.object_id
    end

    Align the parameters of a method call if they span more than one line.
    Open

                   message: I18n.t('activerecord.errors.invalid_language_char', alphabeth: record.alphabeth_code, chars: chars))

    Here we check if the parameters on a multi-line method call or definition are aligned.

    Example: EnforcedStyle: withfirstparameter (default)

    # good
    
    foo :bar,
        :baz
    
    # bad
    
    foo :bar,
      :baz

    Example: EnforcedStyle: withfixedindentation

    # good
    
    foo :bar,
      :baz
    
    # bad
    
    foo :bar,
        :baz

    Align the parameters of a method call if they span more than one line.
    Open

                   message: I18n.t( 'activerecord.errors.invalid_utf8_char', alphabeth: record.alphabeth_code,
                   parts: '"' + parts.join('", "') + '"'))

    Here we check if the parameters on a multi-line method call or definition are aligned.

    Example: EnforcedStyle: withfirstparameter (default)

    # good
    
    foo :bar,
        :baz
    
    # bad
    
    foo :bar,
      :baz

    Example: EnforcedStyle: withfixedindentation

    # good
    
    foo :bar,
      :baz
    
    # bad
    
    foo :bar,
        :baz

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

             if o.keys.include?( :allow )

    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?

    Do not use space inside array brackets.
    Open

          [ options[:with], options[:in] ].flatten.compact.map do |o|

    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 ]]

    Do not use space inside array brackets.
    Open

                   re !~ [ c ].pack("U") && c || nil

    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 ]]

    Do not use space inside reference brackets.
    Open

                res += o[ :allow ]

    Checks that reference brackets have or don't have surrounding space depending on configuration.

    Example: EnforcedStyle: no_space (default)

    # The `no_space` style enforces that reference brackets have
    # no surrounding space.
    
    # bad
    hash[ :key ]
    array[ index ]
    
    # good
    hash[:key]
    array[index]

    Example: EnforcedStyle: space

    # The `space` style enforces that reference brackets have
    # surrounding space.
    
    # bad
    hash[:key]
    array[index]
    
    # good
    hash[ :key ]
    array[ index ]

    Do not use space inside reference brackets.
    Open

                res += o[ :allow ]

    Checks that reference brackets have or don't have surrounding space depending on configuration.

    Example: EnforcedStyle: no_space (default)

    # The `no_space` style enforces that reference brackets have
    # no surrounding space.
    
    # bad
    hash[ :key ]
    array[ index ]
    
    # good
    hash[:key]
    array[index]

    Example: EnforcedStyle: space

    # The `space` style enforces that reference brackets have
    # surrounding space.
    
    # bad
    hash[:key]
    array[index]
    
    # good
    hash[ :key ]
    array[ index ]

    Do not use space inside reference brackets.
    Open

                parts = invalid_is.map { |i| value[ i - 2..i + 2 ] }

    Checks that reference brackets have or don't have surrounding space depending on configuration.

    Example: EnforcedStyle: no_space (default)

    # The `no_space` style enforces that reference brackets have
    # no surrounding space.
    
    # bad
    hash[ :key ]
    array[ index ]
    
    # good
    hash[:key]
    array[index]

    Example: EnforcedStyle: space

    # The `space` style enforces that reference brackets have
    # surrounding space.
    
    # bad
    hash[:key]
    array[index]
    
    # good
    hash[ :key ]
    array[ index ]

    Use a guard clause instead of wrapping the code inside a conditional expression.
    Open

          if res && value.present? && value !~ ( re = /^[#{res}]+$/ )

    Use a guard clause instead of wrapping the code inside a conditional expression

    Example:

    # bad
    def test
      if something
        work
      end
    end
    
    # good
    def test
      return unless something
      work
    end
    
    # also good
    def test
      work if something
    end
    
    # bad
    if something
      raise 'exception'
    else
      ok
    end
    
    # good
    raise 'exception' if something
    ok

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

                   re !~ [ c ].pack("U") && c || nil

    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"

    Do not use space inside reference brackets.
    Open

          res = Languageble::MATCH_TABLE[ code ]

    Checks that reference brackets have or don't have surrounding space depending on configuration.

    Example: EnforcedStyle: no_space (default)

    # The `no_space` style enforces that reference brackets have
    # no surrounding space.
    
    # bad
    hash[ :key ]
    array[ index ]
    
    # good
    hash[:key]
    array[index]

    Example: EnforcedStyle: space

    # The `space` style enforces that reference brackets have
    # surrounding space.
    
    # bad
    hash[:key]
    array[index]
    
    # good
    hash[ :key ]
    array[ index ]

    Align the elements of a hash literal if they span more than one line.
    Open

                   parts: '"' + parts.join('", "') + '"'))

    Check that the keys, separators, and values of a multi-line hash literal are aligned according to configuration. The configuration options are:

    - key (left align keys)
    - separator (align hash rockets and colons, right align keys)
    - table (left align keys, hash rockets, and values)

    The treatment of hashes passed as the last argument to a method call can also be configured. The options are:

    - always_inspect
    - always_ignore
    - ignore_implicit (without curly braces)
    - ignore_explicit (with curly braces)

    Example:

    # EnforcedHashRocketStyle: key (default)
    # EnforcedColonStyle: key (default)
    
    # good
    {
      foo: bar,
      ba: baz
    }
    {
      :foo => bar,
      :ba => baz
    }
    
    # bad
    {
      foo: bar,
       ba: baz
    }
    {
      :foo => bar,
       :ba => baz
    }

    Example:

    # EnforcedHashRocketStyle: separator
    # EnforcedColonStyle: separator
    
    #good
    {
      foo: bar,
       ba: baz
    }
    {
      :foo => bar,
       :ba => baz
    }
    
    #bad
    {
      foo: bar,
      ba: baz
    }
    {
      :foo => bar,
      :ba => baz
    }
    {
      :foo => bar,
      :ba  => baz
    }

    Example:

    # EnforcedHashRocketStyle: table
    # EnforcedColonStyle: table
    
    #good
    {
      foo: bar,
      ba:  baz
    }
    {
      :foo => bar,
      :ba  => baz
    }
    
    #bad
    {
      foo: bar,
      ba: baz
    }
    {
      :foo => bar,
       :ba => baz
    }

    Do not use space inside array brackets.
    Open

                   re !~ [ c ].pack("U") && c || nil

    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

             if ! o.keys.include?( :nosyntax )

    Checks for spaces inside ordinary round parentheses.

    Example:

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

    Do not use space inside reference brackets.
    Open

                res += Languageble::SYNTAX_TABLE[ code ]

    Checks that reference brackets have or don't have surrounding space depending on configuration.

    Example: EnforcedStyle: no_space (default)

    # The `no_space` style enforces that reference brackets have
    # no surrounding space.
    
    # bad
    hash[ :key ]
    array[ index ]
    
    # good
    hash[:key]
    array[index]

    Example: EnforcedStyle: space

    # The `space` style enforces that reference brackets have
    # surrounding space.
    
    # bad
    hash[:key]
    array[index]
    
    # good
    hash[ :key ]
    array[ index ]

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

             chars = value.unpack("U*").map.with_index do |c, i|

    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"

    There are no issues that match your filters.

    Category
    Status