Skip to content

Commit 19a2543

Browse files
committed
chore: Lint fix.
1 parent 5a40898 commit 19a2543

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/@css-blocks/language-server/src/Importer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { NodeJsImporter, Configuration, ImportedFile } from "@css-blocks/core";
1+
import { Configuration, ImportedFile, NodeJsImporter } from "@css-blocks/core";
22
import { TextDocuments } from "vscode-languageserver";
33
import { URI } from "vscode-uri";
44

packages/@css-blocks/language-server/src/eventHandlers/documentContentChange.ts

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export async function documentContentChange(e: TextDocumentChangeEvent, blockFac
88
const { uri } = e.document;
99

1010
if (isBlockFile(uri)) {
11-
let errors: CssBlockError[] = [];
1211
try {
1312
// parses the block file to get the block and errors if there's a problem
1413
// along the way. The importer ensures that we're getting live contents if

0 commit comments

Comments
 (0)