File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export class FortranDocumentSymbolProvider
5757 }
5858 }
5959 return symbols ;
60- } ;
60+ }
6161
6262 getSymbolsOfType ( type : "subroutine" | "function" | "variable" ) : ParserFunc {
6363 switch ( type ) {
@@ -113,7 +113,7 @@ export class FortranDocumentSymbolProvider
113113 ) ;
114114 }
115115 }
116-
116+
117117 getSymbolTypes ( ) {
118118 let config = vscode . workspace . getConfiguration ( "fortran" ) ;
119119 const symbolTypes = config . get < SymbolType [ ] > ( "symbols" , [
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default class FortranLintingProvider {
1818 if ( textDocument . languageId !== LANGUAGE_ID || textDocument . uri . scheme !== "file" ) {
1919 return ;
2020 }
21-
21+
2222 let decoded = "" ;
2323 let diagnostics : vscode . Diagnostic [ ] = [ ] ;
2424 let command = this . getGfortranPath ( ) ;
Original file line number Diff line number Diff line change 22import * as fs from 'fs' ;
33import * as vscode from 'vscode' ;
44
5- // IMPORTANT: this should match the value
6- // on the package.json otherwise the extension won't
7- // work at all ⛽️
5+ // IMPORTANT: this should match the value
6+ // on the package.json otherwise the extension won't
7+ // work at all
88export const LANGUAGE_ID = 'FortranFreeForm' ;
99
1010export const intrinsics = [
You can’t perform that action at this time.
0 commit comments