hackedteam/vector-edk

View on GitHub
vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py

Summary

Maintainability
F
5 mos
Test Coverage

File transformer.py has 1156 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""Parse tree transformation module.

Transforms Python source code into an abstract syntax tree (AST)
defined in the ast module.
Severity: Major
Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 2 days to fix

    Transformer has 116 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Transformer:
        """Utility object for transforming Python parse trees.
    
        Exposes the following methods:
            tree = transform(ast_tree)
    Severity: Major
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 2 days to fix

      Function com_assign has a Cognitive Complexity of 42 (exceeds 5 allowed). Consider refactoring.
      Open

          def com_assign(self, node, assigning):
              # return a node suitable for use as an "lvalue"
              # loop to avoid trivial recursion
              while 1:
                  t = node[0]
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 6 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

      Function get_docstring has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
      Open

          def get_docstring(self, node, n=None):
              if n is None:
                  n = node[0]
                  node = node[1:]
              if n == symbol.suite:
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 3 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

      Function com_arglist has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
      Open

          def com_arglist(self, nodelist):
              # varargslist:
              #     (fpdef ['=' test] ',')* ('*' NAME [',' '**' NAME] | '**' NAME)
              #   | fpdef ['=' test] (',' fpdef ['=' test])* [',']
              # fpdef: NAME | '(' fplist ')'
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 3 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

      Function com_try_except_finally has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
      Open

          def com_try_except_finally(self, nodelist):
              # ('try' ':' suite
              #  ((except_clause ':' suite)+ ['else' ':' suite] ['finally' ':' suite]
              #   | 'finally' ':' suite))
      
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - 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

      Function com_comprehension has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

          def com_comprehension(self, expr1, expr2, node, type):
              # list_iter: list_for | list_if
              # list_for: 'for' exprlist 'in' testlist [list_iter]
              # list_if: 'if' test [list_iter]
      
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - 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

      Function com_call_function has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def com_call_function(self, primaryNode, nodelist):
              if nodelist[0] == token.RPAR:
                  return CallFunc(primaryNode, [], lineno=extractLineNo(nodelist))
              args = []
              kw = 0
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - 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

      Function com_generator_expression has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def com_generator_expression(self, expr, node):
              # comp_iter: comp_for | comp_if
              # comp_for: 'for' exprlist 'in' test [comp_iter]
              # comp_if: 'if' test [comp_iter]
      
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - 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

      Function comparison has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def comparison(self, nodelist):
              # comparison: expr (comp_op expr)*
              node = self.com_node(nodelist[0])
              if len(nodelist) == 1:
                  return node
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - 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

      Function asList has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

      def asList(nodes):
          l = []
          for item in nodes:
              if hasattr(item, "asList"):
                  l.append(item.asList())
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - 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

      Function com_dictorsetmaker has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def com_dictorsetmaker(self, nodelist):
              # dictorsetmaker: ( (test ':' test (comp_for | (',' test ':' test)* [','])) |
              #                   (test (comp_for | (',' test)* [','])) )
              assert nodelist[0] == symbol.dictorsetmaker
              nodelist = nodelist[1:]
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - 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

      Function com_sliceobj has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def com_sliceobj(self, node):
              # proper_slice: short_slice | long_slice
              # short_slice:  [lower_bound] ":" [upper_bound]
              # long_slice:   short_slice ":" [stride]
              # lower_bound:  expression
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 55 mins 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

      Avoid deeply nested control flow statements.
      Open

                              if ch[0] == token.DOUBLESTAR:
                                  raise SyntaxError, "can't assign to operator"
                              primary = self.com_apply_trailer(primary, ch)
      Severity: Major
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 45 mins to fix

        Function extractLineNo has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

        def extractLineNo(ast):
            if not isinstance(ast[1], tuple):
                # get a terminal node
                return ast[2]
            for child in ast[1:]:
        Severity: Minor
        Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 45 mins 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

        Function com_argument has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            def com_argument(self, nodelist, kw, star_node):
                if len(nodelist) == 3 and nodelist[2][0] == symbol.comp_for:
                    test = self.com_node(nodelist[1])
                    return 0, self.com_generator_expression(test, nodelist[2])
                if len(nodelist) == 2:
        Severity: Minor
        Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 45 mins 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

        Function term has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def term(self, nodelist):
                node = self.com_node(nodelist[0])
                for i in range(2, len(nodelist), 2):
                    right = self.com_node(nodelist[i])
                    t = nodelist[i-1][0]
        Severity: Minor
        Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 35 mins 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

        Function compile_node has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def compile_node(self, node):
                ### emit a line-number node?
                n = node[0]
        
                if n == symbol.encoding_decl:
        Severity: Minor
        Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 35 mins 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

        Avoid too many return statements within this function.
        Open

                    return self.get_docstring(node[0])
        Severity: Major
        Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                      return self.get_docstring(node[0])
          Severity: Major
          Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                        return self.funcdef(node[1:])
            Severity: Major
            Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                          return None
              Severity: Major
              Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                                return s
                Severity: Major
                Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                              return self.classdef(node[1:])
                  Severity: Major
                  Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                                return None
                    Severity: Major
                    Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                              return None
                      Severity: Major
                      Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 30 mins to fix

                        Function com_subscriptlist has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                            def com_subscriptlist(self, primary, nodelist, assigning):
                                # slicing:      simple_slicing | extended_slicing
                                # simple_slicing:   primary "[" short_slice "]"
                                # extended_slicing: primary "[" slice_list "]"
                                # slice_list:   slice_item ("," slice_item)* [","]
                        Severity: Minor
                        Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 25 mins 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

                        Function debug_tree has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                        def debug_tree(tree):
                            l = []
                            for elt in tree:
                                if isinstance(elt, int):
                                    l.append(_names.get(elt, elt))
                        Severity: Minor
                        Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 25 mins 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

                        Function raise_stmt has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                            def raise_stmt(self, nodelist):
                                # raise: [test [',' test [',' test]]]
                                if len(nodelist) > 5:
                                    expr3 = self.com_node(nodelist[5])
                                else:
                        Severity: Minor
                        Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 25 mins 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

                        Function print_stmt has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                            def print_stmt(self, nodelist):
                                # print ([ test (',' test)* [','] ] | '>>' test [ (',' test)+ [','] ])
                                items = []
                                if len(nodelist) == 1:
                                    start = 1
                        Severity: Minor
                        Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 25 mins 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

                        Function com_assign_list has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                            def com_assign_list(self, node, assigning):
                                assigns = []
                                for i in range(1, len(node), 2):
                                    if i + 1 < len(node):
                                        if node[i + 1][0] == symbol.list_for:
                        Severity: Minor
                        Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 25 mins 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

                        Function file_input has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                            def file_input(self, nodelist):
                                doc = self.get_docstring(nodelist, symbol.file_input)
                                if doc is not None:
                                    i = 1
                                else:
                        Severity: Minor
                        Found in vector-uefi/fd/efi/StdLib/lib/python.27/compiler/transformer.py - About 25 mins 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

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

                        AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/transformer.py on lines 0..1535

                        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 13519.

                        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

                        There are no issues that match your filters.

                        Category
                        Status