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 2e153ca commit d1d049bCopy full SHA for d1d049b
src/extension.ts
@@ -48,7 +48,7 @@ export async function activate(context: vscode.ExtensionContext) {
48
);
49
// Linter is always activated but will only lint if compiler !== Disabled
50
const linterCache = path.join(context.storageUri.fsPath, 'include');
51
- await vscode.workspace.fs.createDirectory(vscode.Uri.file(linterCache));
+ await vscode.workspace.fs.createDirectory(vscode.Uri.parse(linterCache));
52
const linter = new FortranLintingProvider(logger, linterCache);
53
context.subscriptions.push(...(await linter.activate()));
54
vscode.languages.registerCodeActionsProvider(FortranDocumentSelector(), linter);
0 commit comments