File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ Linting results can be improved by providing additional options to the compiler.
105105You can control the include paths to be used by the linter with the ` fortran.linter.includePaths ` option.
106106
107107| ❗️ Important | For the best linting results ` linter.includePaths ` should match the included paths for your project's compilation. |
108- | ------------- | ------------------------------------------------------------------------------------------------------------------ |
108+ | ------------ | ------------------------------------------------------------------------------------------------------------------ |
109109
110110``` json
111111{
@@ -114,7 +114,7 @@ You can control the include paths to be used by the linter with the `fortran.lin
114114```
115115
116116| ❗️ Important | If a glob pattern is used only directories matching the pattern will be included |
117- | ------------- | -------------------------------------------------------------------------------- |
117+ | ------------ | -------------------------------------------------------------------------------- |
118118
119119### Additional linting options
120120
Original file line number Diff line number Diff line change @@ -166,7 +166,10 @@ export class LinterSettings {
166166}
167167
168168export class FortranLintingProvider {
169- constructor ( private logger : Logger = new Logger ( ) , private storageUI : string = undefined ) {
169+ constructor (
170+ private logger : Logger = new Logger ( ) ,
171+ private storageUI : string = undefined
172+ ) {
170173 // Register the Linter provider
171174 this . fortranDiagnostics = vscode . languages . createDiagnosticCollection ( 'Fortran' ) ;
172175 this . settings = new LinterSettings ( this . logger ) ;
Original file line number Diff line number Diff line change @@ -26,7 +26,10 @@ import {
2626export const clients : Map < string , LanguageClient > = new Map ( ) ;
2727
2828export class FortlsClient {
29- constructor ( private logger : Logger , private context ?: vscode . ExtensionContext ) {
29+ constructor (
30+ private logger : Logger ,
31+ private context ?: vscode . ExtensionContext
32+ ) {
3033 this . logger . debug ( '[lsp.client] Fortran Language Server -- constructor' ) ;
3134
3235 // if context is present
You can’t perform that action at this time.
0 commit comments