EventGhost/EventGhost

View on GitHub
plugins/OOo_Impress/__init__.py

Summary

Maintainability
F
3 wks
Test Coverage

File __init__.py has 1450 lines of code (exceeds 250 allowed). Consider refactoring.
Open

version="0.2"
# plugins/Impress/__init__.py
#
# Copyright (C)  2008-2013 Pako  (lubos.ruckl@quick.cz)
#
Severity: Major
Found in plugins/OOo_Impress/__init__.py - About 3 days to fix

    Function Configure has a Cognitive Complexity of 83 (exceeds 5 allowed). Consider refactoring.
    Open

        def Configure(
            self,
            choices = [],
            fore = (0, 0, 0),
            back = (255, 255, 255),
    Severity: Minor
    Found in plugins/OOo_Impress/__init__.py - About 1 day 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 Configure has 158 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def Configure(
            self,
            choices = [],
            fore = (0, 0, 0),
            back = (255, 255, 255),
    Severity: Major
    Found in plugins/OOo_Impress/__init__.py - About 6 hrs to fix

      Function ShowMenuEventsDialog has 83 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def ShowMenuEventsDialog(self, title, labels):
              self.panel.Enable(False)
              self.panel.dialog.buttonRow.cancelButton.Enable(False)
              self.panel.EnableButtons(False)
              self.SetTitle(title)
      Severity: Major
      Found in plugins/OOo_Impress/__init__.py - About 3 hrs to fix

        Function __init__ has 41 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            def __init__(
                self,
                fore,
                back,
                foreSel,
        Severity: Minor
        Found in plugins/OOo_Impress/__init__.py - About 1 hr to fix

          Function __init__ has 11 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def __init__(
          Severity: Major
          Found in plugins/OOo_Impress/__init__.py - About 1 hr to fix

            Function GetLabel has 10 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def GetLabel(
            Severity: Major
            Found in plugins/OOo_Impress/__init__.py - About 1 hr to fix

              Function __call__ has 10 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  def __call__(
              Severity: Major
              Found in plugins/OOo_Impress/__init__.py - About 1 hr to fix

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

                    def onFrameCharHook(self, event):
                        keyCode = event.GetKeyCode()
                        if keyCode == wx.WXK_F4:
                            if event.AltDown():
                                self.destroyMenu()
                Severity: Minor
                Found in plugins/OOo_Impress/__init__.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 Configure has 10 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    def Configure(
                Severity: Major
                Found in plugins/OOo_Impress/__init__.py - About 1 hr to fix

                  Function Configure has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      def Configure(self, url = None, start = 1, endless = False, pause = 0):
                          panel = eg.ConfigPanel(self)
                          sizer = wx.FlexGridSizer(2, 2, 20, 5)
                          sizer.AddGrowableCol(1)
                          label = wx.StaticText(
                  Severity: Minor
                  Found in plugins/OOo_Impress/__init__.py - About 1 hr to fix

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

                        def OnData(self, dummyX, dummyY, dragResult):
                            if self.GetData() and self.customData.GetDataSize() > 0:
                                txt = self.customData.GetData()
                                ix, evtList = self.object.GetEvtList()
                                flag = True
                    Severity: Minor
                    Found in plugins/OOo_Impress/__init__.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 __init__ has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def __init__(
                            self,
                            fore,
                            back,
                            foreSel,
                    Severity: Minor
                    Found in plugins/OOo_Impress/__init__.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

                    Avoid deeply nested control flow statements.
                    Open

                                                if [item[1] for item in self.choices].count(filepath)==1:
                                                    flag = True
                                    panel.EnableButtons(flag)
                    Severity: Major
                    Found in plugins/OOo_Impress/__init__.py - About 45 mins to fix

                      Consider simplifying this complex logical expression.
                      Open

                              if keyCode == wx.WXK_F4:
                                  if event.AltDown():
                                      self.destroyMenu()
                              elif keyCode == wx.WXK_RETURN or keyCode == wx.WXK_NUMPAD_ENTER:
                                  self.DefaultAction()
                      Severity: Major
                      Found in plugins/OOo_Impress/__init__.py - About 40 mins to fix

                        Function Configure has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            def Configure(self, url = None, start = 1, endless = False, pause = 0):
                        Severity: Minor
                        Found in plugins/OOo_Impress/__init__.py - About 35 mins to fix

                          Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                              def __init__(self, parent, id, evtList, ix, action):
                          Severity: Minor
                          Found in plugins/OOo_Impress/__init__.py - About 35 mins to fix

                            Function __call__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                                def __call__(self, url = None, strt = 0, endless = False, pause = 0):
                            Severity: Minor
                            Found in plugins/OOo_Impress/__init__.py - About 35 mins to fix

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

                                  def ShowMenuEventsDialog(self, title, labels):
                                      self.panel.Enable(False)
                                      self.panel.dialog.buttonRow.cancelButton.Enable(False)
                                      self.panel.EnableButtons(False)
                                      self.SetTitle(title)
                              Severity: Minor
                              Found in plugins/OOo_Impress/__init__.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 DrawMenu has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                              Open

                                  def DrawMenu(self):
                                      self.Show(False)
                                      self.menuGridCtrl.SetGridCursor(-1, 0)
                                      monDim = GetMonitorDimensions()
                                      try:
                              Severity: Minor
                              Found in plugins/OOo_Impress/__init__.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

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

                              class EventListCtrl(wx.ListCtrl):
                              
                                  def __init__(self, parent, id, evtList, ix, action):
                                      width = 205
                                      wx.ListCtrl.__init__(self, parent, id, style=wx.LC_REPORT |
                              Severity: Major
                              Found in plugins/OOo_Impress/__init__.py and 1 other location - About 1 wk to fix
                              plugins/MediaPlayerClassic/__init__.py on lines 492..575

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

                              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

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

                                  def Move(self, index, direction):
                                      tmpList = self.choices[:]
                                      max = len(self.choices)-1
                                      #Last to first position, other down
                                      if index == max and direction == 1:
                              Severity: Major
                              Found in plugins/OOo_Impress/__init__.py and 1 other location - About 1 day to fix
                              plugins/OSM/__init__.py on lines 273..291

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

                              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

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

                                      def OnColourBtn(evt):
                                          id = evt.GetId()
                                          value = evt.GetValue()
                                          if id == foreColourButton.GetId():
                                              listBoxCtrl.SetForegroundColour(value)
                              Severity: Major
                              Found in plugins/OOo_Impress/__init__.py and 2 other locations - About 1 day to fix
                              plugins/MediaPlayerClassic/__init__.py on lines 2230..2251
                              plugins/RadioSure/__init__.py on lines 6037..6058

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

                              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

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

                              class MyTextDropTarget(EventDropTarget):
                              
                                  def __init__(self, object):
                                      EventDropTarget.__init__(self, object)
                                      self.object = object
                              Severity: Major
                              Found in plugins/OOo_Impress/__init__.py and 2 other locations - About 1 day to fix
                              plugins/MediaPlayerClassic/__init__.py on lines 461..488
                              plugins/RadioSure/__init__.py on lines 3253..3280

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

                              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

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

                                      if w1 > w2:
                                          btnDEL=wx.Button(panel,-1,self.text.delete)
                                          btnApp=wx.Button(panel,-1,self.text.insert,size=btnDEL.GetSize())
                                      else:
                                          btnApp=wx.Button(panel,-1,self.text.insert)
                              Severity: Major
                              Found in plugins/OOo_Impress/__init__.py and 1 other location - About 3 hrs to fix
                              plugins/OSM/__init__.py on lines 453..458

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

                              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

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

                              class MyTimer():
                                  def __init__(self, t, plugin):
                                      self.timer = Timer(t, self.Run)
                                      self.plugin = plugin
                                      self.timer.start()
                              Severity: Major
                              Found in plugins/OOo_Impress/__init__.py and 3 other locations - About 2 hrs to fix
                              plugins/MediaPlayerClassic/__init__.py on lines 1299..1316
                              plugins/OSE/__init__.py on lines 1373..1390
                              plugins/RadioSure/__init__.py on lines 653..669

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

                              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

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

                                          for n in range(10, 20):
                                              font.SetPointSize(n)
                                              previewLbl.SetFont(font)
                                              if previewLbl.GetTextExtent('X')[1] >= 28:
                                                  font.SetPointSize(n - 4)
                              Severity: Major
                              Found in plugins/OOo_Impress/__init__.py and 1 other location - About 1 hr to fix
                              plugins/OOo_Impress/__init__.py on lines 998..1004

                              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

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

                                      for n in range(10, 20):
                                          font.SetPointSize(n)
                                          previewLbl.SetFont(font)
                                          if previewLbl.GetTextExtent('X')[1] >= 28:
                                              font.SetPointSize(n - 4)
                              Severity: Major
                              Found in plugins/OOo_Impress/__init__.py and 1 other location - About 1 hr to fix
                              plugins/OOo_Impress/__init__.py on lines 1277..1283

                              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

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

                                      def OnButtonUp(evt):
                                          newSel = self.Move(listBoxCtrl.GetSelection(), -1)
                                          listBoxCtrl.Set(self.choices)
                                          listBoxCtrl.SetSelection(newSel)
                                          self.oldSel = newSel
                              Severity: Minor
                              Found in plugins/OOo_Impress/__init__.py and 1 other location - About 45 mins to fix
                              plugins/OOo_Impress/__init__.py on lines 1302..1308

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

                              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

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

                                      def OnButtonDown(evt):
                                          newSel = self.Move(listBoxCtrl.GetSelection(), 1)
                                          listBoxCtrl.Set(self.choices)
                                          listBoxCtrl.SetSelection(newSel)
                                          self.oldSel = newSel
                              Severity: Minor
                              Found in plugins/OOo_Impress/__init__.py and 1 other location - About 45 mins to fix
                              plugins/OOo_Impress/__init__.py on lines 1292..1298

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

                              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