We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d3b7a commit f02c6e4Copy full SHA for f02c6e4
src/features/linter-provider.ts
@@ -18,7 +18,7 @@ export default class FortranLintingProvider {
18
private diagnosticCollection: vscode.DiagnosticCollection;
19
private doModernFortranLint(textDocument: vscode.TextDocument) {
20
let errorRegex:RegExp = /^([^:]*):([0-9]+):([0-9]+):\n\s(.*)\n.*\n(Error|Warning|Fatal Error):\s(.*)$/gm;
21
- console.log(textDocument.languageId);
+
22
if (textDocument.languageId !== 'fortran90') {
23
return;
24
}
0 commit comments