Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit bb183d6

Browse files
committed
Fix linting issues
1 parent fd5927f commit bb183d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/util.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export function spawn(
258258

259259
export function getArduinoL4jCodepage(filePath: string): string | undefined {
260260
const encoding = parseConfigFile(filePath).get("-Dfile.encoding");
261-
if(encoding === "UTF8") {
261+
if (encoding === "UTF8") {
262262
return "65001";
263263
}
264264
return Object.keys(encodingMapping).reduce((r, key) => {

0 commit comments

Comments
 (0)