intellij-lsp/intellij-lsp-plugin

View on GitHub
src/main/scala/com/github/gtache/lsp/utils/GUIUtils.scala

Summary

Maintainability
A
1 hr
Test Coverage
F
0%

Method createAndShowEditorHint has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

  def createAndShowEditorHint(editor: Editor, string: String, point: Point, constraint: Short = HintManager.ABOVE,
                              flags: Int = HintManager.HIDE_BY_ANY_KEY | HintManager.HIDE_BY_TEXT_CHANGE | HintManager.HIDE_BY_SCROLLING): Hint = {
Severity: Minor
Found in src/main/scala/com/github/gtache/lsp/utils/GUIUtils.scala - About 35 mins to fix

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

      def getIconProviderFor(serverDefinition: LanguageServerDefinition): LSPIconProvider = {
        if (serverDefinition != null) {
          try {
            val providers = LSPIconProvider.EP_NAME.getExtensions.filter(provider => provider.isSpecificFor(serverDefinition))
            if (providers.nonEmpty) providers.head else LSPDefaultIconProvider
    Severity: Minor
    Found in src/main/scala/com/github/gtache/lsp/utils/GUIUtils.scala - 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

    File line length exceeds 160 characters
    Open

                            flags: Int = HintManager.HIDE_BY_ANY_KEY | HintManager.HIDE_BY_TEXT_CHANGE | HintManager.HIDE_BY_OTHER_HINT | HintManager.HIDE_BY_SCROLLING): Unit = {

    If block needs braces
    Open

        if (serverDefinition != null) {

    File line length exceeds 160 characters
    Open

        HintManagerImpl.getInstanceImpl.showEditorHint(hint, editor, p, flags, 0, false, HintManagerImpl.createHintHint(editor, p, hint, constraint).setContentActive(false))

    Import from illegal package
    Open

    import java.awt.Point

    There are no issues that match your filters.

    Category
    Status