Skip to content

Commit 28042fe

Browse files
committed
chore: formatting changes
1 parent 20724cc commit 28042fe

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Linting results can be improved by providing additional options to the compiler.
105105
You 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

src/lint/provider.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,10 @@ export class LinterSettings {
166166
}
167167

168168
export 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);

src/lsp/client.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ import {
2626
export const clients: Map<string, LanguageClient> = new Map();
2727

2828
export 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

0 commit comments

Comments
 (0)