Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
razzeee committed Sep 24, 2023
1 parent 7463679 commit 7836d5a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/common/providers/diagnostics/elmAnalyseJsonService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,9 @@ export class ElmAnalyseJsonService implements IElmAnalyseJsonService {

let elmAnalyseJson = {};
try {
elmAnalyseJson = require(path.join(
workspacePath,
"elm-analyse.json",
)) as IElmAnalyseJson;
elmAnalyseJson = require(
path.join(workspacePath, "elm-analyse.json"),
) as IElmAnalyseJson;
} catch {
this.connection.console.info(
"No elm-analyse.json found, enabling all diagnostic checks.",
Expand Down

0 comments on commit 7836d5a

Please sign in to comment.