Configure include paths for linting in vscode

I scolled through this entry yesterday. And just as I visited today, I found this message which might be relevant:

So I also tried adding the path to the source to the linter:

    "fortran.fortls.directories":[
        "/usr/local/include/fortran_stdlib/GNU-14.2.1",
        "/usr/local/include/fortran_stdlib",
        "/popos/home/caspar/Documents-old/code/fortran/stdlib/**",
        "/popos/home/caspar/Documents-old/code/fortran/stdlib/src/**"
    ]

It didnt seem to help either unfortunately.

Using these settings I actually get tooltip info, just the error squiggles stay for some reason:

Also if I click on a method eg. ord_sort it will actually locate it in the source :smile:, just the error squiggle stays for some reason. I could not find a way to deactivate them.

The life hack to disabeling the error squiggles is to set them to transparent:

    "workbench.colorCustomizations": {
        "editorError.foreground":   "#00000000",
        "editorWarning.foreground": "#00000000",
        "editorInfo.foreground":    "#00000000"
    }